Jump to content
Dahlgren

Arma Server Web Admin

Recommended Posts

https://imgur.com/a/Xod6U

 

We've been using this for almost three years now at our community and have helped a lot to allow our mission makers to host their own events.

Features

  • Create multiple instances of game servers in the same admin panel
  • See server status queryed from the instances with current mission and players
  • Download game logs
  • Upload missions from your local computer and from Steam Workshop to the server

Requirements

  • Node.js
  • Pre-installed Arma Server

Supported Platforms

  • Windows
  • Linux
  • Linux with Windows server binary using Wine 

Supported Games

  • Arma 3
  • Arma 2 Operation Arrowhead
  • Arma 2
  • Arma 1
  • Cold War Assault (not supported on Linux without Wine)
  • Operation Flashpoint Resistance
  • Operation Flashpoint

Download

Git repository with install instructions,

https://github.com/Dahlgren/arma-server-web-admin

  • Like 5

Share this post


Link to post
Share on other sites

I'm not sure what I'm doing wrong here... getting this error.

{ Error: ENOENT: no such file or directory, open 'C:\xampp\htdocs\boonieadmin\servers.json'
    at Error (native)
  errno: -4058,
  code: 'ENOENT',
  syscall: 'open',
  path: 'C:\\xampp\\htdocs\\boonieadmin\\servers.json' }

Share this post


Link to post
Share on other sites

If it's the first time you're using it and you haven't yet created any servers with it there aren't any server configs to load. Nothing to worry about :)

Share this post


Link to post
Share on other sites

Thanks, it was just me overthinking things and thinking a web server needed to be involved... lol

 

 

I have a few requests...

 

One is the addition of the "Custom" difficulty when adding a mission to the rotation.

 

The ability to specify launch parameters like -autoInit and -enableHT.

 

Would be awesome to have the ability to install/update mods from steam workshop as well.

 

 

 

Big thanks for releasing this! I have needed this for our community and it's multiple mission makers for a long time.

Share this post


Link to post
Share on other sites

I've added Custom as a selectable difficulty level

 

Additional parameters are supported by the underlaying server manager but not the UI currently. I might add it as a value in the config file for now, I'll get back to you on that.

 

I wanted to support Steam Workshop mod downloads but last time I checked only mission files were returned from the Steam API. I guess it would be possible using SteamCMD. I might investigate it further in the future.

Share this post


Link to post
Share on other sites

Dahlgren,

Could you possibly provide a more extensive guide on how to set it up?

I edited and renamed the config.js and installed nodejs but honestly i have no idea what to do with the files themselves

 

Running CentOS 7.2, with basic linux knowledge, have an apache webserver running

 

Thanks in advance

Share this post


Link to post
Share on other sites

If you have installed node and configured your config.js you'll just need to run npm install in the folder to install all dependences and then npm start to run the actual application. The admin website will then be available at your servers IP (or localhost if running on your local computer) together with your port. Just open a web browser and go to http://<your_ip>:<defined_port>. If you have it running on your local computer and set the port as 3000 in the config.js you would go to http://localhost:3000

Share this post


Link to post
Share on other sites

Thank you so much, didn't know it was that easy.
Is there a way to keep the program running in the background?
And any option to add custom difficulty and no verification on mods?

 

Beautiful little tool you got here

Share this post


Link to post
Share on other sites

I've added a helper script to install it as a Windows Service so that it will run in the background with just a simple command. It needs to be invoked as administrator though. Just fetch the latest code from the repo, install the new dependency with npm install and then install the service with npm run install-windows-service. The app will automatically start after the service has been created and will also autostart on reboot.

 

Custom difficulty can be selected for a mission but there is yet no UI to manage difficulty settings.

 

Mods shouldn't be verified by default, there is sadly no UI to change this flag yet.

 

In the latest release I've also added support for custom parameters for the server and headless clients.

  • Like 1

Share this post


Link to post
Share on other sites

I have the problem, that the script want to start the server and then can't find

%armaserver%\\\dta\bin

Why there are so many backslashes?

 

It's a WindowsServer.

Edited by Sheggy_muh

Share this post


Link to post
Share on other sites

What does your config.js look like?

 

The problem is that backslash is a reserved character used to generate some other specific characters that can't be written easily otherwise. So for each backslash in the path there must be two of them to get a real backslash instead of some other control characters. This is a Windows specific issue, Unix based operating system uses a forward slash for paths which works just fine with just one.

 

In the future I want a proper UI in the web for configuration.

Share this post


Link to post
Share on other sites

Ok, so i can't use your Tool. My path looks like

'c:\\Server\\Arma3\\'

If i use it like this

'..\\Arma3\\'

the server starts.

 

But then the server can't find the files for starting the game.

Share this post


Link to post
Share on other sites
  • Did you set the type as 'windows' in your config.js?
  • Does C:\Server\Arma 3 contain arma3server.exe?

If so, using 'C:\\Server\\Arma3' as 'path' should work just fine.

 

Are you getting any specific errors in you server logs?

 

We're running a couple of Windows Arma 3 servers for our community using the tool without issues.

Share this post


Link to post
Share on other sites
35 minutes ago, Dahlgren said:
  • Did you set the type as 'windows' in your config.js?
  • Does C:\Server\Arma 3 contain arma3server.exe?

If so, using 'C:\\Server\\Arma3' as 'path' should work just fine.

 

Are you getting any specific errors in you server logs?

 

We're running a couple of Windows Arma 3 servers for our community using the tool without issues.

 

Yes and

yes,

 

the right path you suggest produce the error you see above in my first post.

 

My logs look like this after i set the 'path' to '..\\Arma3\\'

Spoiler

 7:35:50 SteamAPI initialization failed. Steam features wont's be accessible!
 7:35:50 Splash window: Unable to load config file: dta\splashwindow.bin
 7:35:50 Cannot register string STR_SUNDAY - global stringtable not found
 7:35:50 Cannot register string STR_MONDAY - global stringtable not found
 7:35:50 Cannot register string STR_TUESDAY - global stringtable not found
 7:35:50 Cannot register string STR_WEDNESDAY - global stringtable not found
 7:35:50 Cannot register string STR_THURSDAY - global stringtable not found
 7:35:50 Cannot register string STR_FRIDAY - global stringtable not found
 7:35:50 Cannot register string STR_SATURDAY - global stringtable not found
 7:35:50 Cannot register string STR_JANUARY - global stringtable not found
 7:35:50 Cannot register string STR_FEBRUARY - global stringtable not found
 7:35:50 Cannot register string STR_MARCH - global stringtable not found
 7:35:50 Cannot register string STR_APRIL - global stringtable not found
 7:35:50 Cannot register string STR_MAY - global stringtable not found
 7:35:50 Cannot register string STR_JUNE - global stringtable not found
 7:35:50 Cannot register string STR_JULY - global stringtable not found
 7:35:50 Cannot register string STR_AUGUST - global stringtable not found
 7:35:50 Cannot register string STR_SEPTEMBER - global stringtable not found
 7:35:50 Cannot register string STR_OCTOBER - global stringtable not found
 7:35:50 Cannot register string STR_NOVEMBER - global stringtable not found
 7:35:50 Cannot register string STR_DECEMBER - global stringtable not found
 7:35:50 Cannot register string STR_DATE_FORMAT - global stringtable not found
 7:35:50 Cannot register string STR_DATE_FORMAT_SHORT - global stringtable not found
 7:35:50 Cannot register string STR_TIME_FORMAT - global stringtable not found
 7:35:50 Cannot register string STR_MAP_INFO_OLD - global stringtable not found
 7:35:50 Cannot register string STR_MAP_INTERVAL - global stringtable not found
 7:35:50 Cannot register string STR_MAP_LEGEND_INFO - global stringtable not found
 7:35:50 Cannot register string STR_MAP_SCALE_FORMAT - global stringtable not found
 7:35:50 Cannot register string STR_RESOLUTION_FORMAT - global stringtable not found
 7:35:50 Cannot register string STR_FILLRATE_FORMAT - global stringtable not found
 7:35:50 Cannot register string STR_REFRESH_RATE_FORMAT - global stringtable not found
 7:35:50 Cannot register string STR_WINDOWED - global stringtable not found
 7:35:50 Cannot register string STR_WEST - global stringtable not found
 7:35:50 Cannot register string STR_EAST - global stringtable not found
 7:35:50 Cannot register string STR_GUERRILA - global stringtable not found
 7:35:50 Cannot register string STR_CIVILIAN - global stringtable not found
 7:35:50 Cannot register string STR_LOGIC - global stringtable not found
 7:35:50 Cannot register string STR_EMPTY - global stringtable not found
 7:35:50 Cannot register string STR_AMBIENT_LIFE - global stringtable not found
 7:35:50 Cannot register string STR_NOBODY - global stringtable not found
 7:35:50 Cannot register string STR_PRIVATE - global stringtable not found
 7:35:50 Cannot register string STR_CORPORAL - global stringtable not found
 7:35:50 Cannot register string STR_SERGEANT - global stringtable not found
 7:35:50 Cannot register string STR_LIEUTENANT - global stringtable not found
 7:35:50 Cannot register string STR_CAPTAIN - global stringtable not found
 7:35:50 Cannot register string STR_MAJOR - global stringtable not found
 7:35:50 Cannot register string STR_COLONEL - global stringtable not found
 7:35:50 Cannot register string STR_GENERAL - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_PRIVATE - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_CORPORAL - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_SERGEANT - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_LIEUTENANT - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_CAPTAIN - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_MAJOR - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_COLONEL - global stringtable not found
 7:35:50 Cannot register string STR_SHORT_GENERAL - global stringtable not found
 7:35:50 Cannot register string STR_SKILL_NOVICE - global stringtable not found
 7:35:50 Cannot register string STR_SKILL_ROOKIE - global stringtable not found
 7:35:50 Cannot register string STR_SKILL_RECRUIT - global stringtable not found
 7:35:50 Cannot register string STR_SKILL_VETERAN - global stringtable not found
 7:35:50 Cannot register string STR_SKILL_EXPERT - global stringtable not found
 7:35:50 Cannot register string STR_IGNORE - global stringtable not found
 7:35:50 Cannot register string STR_BYPASS - global stringtable not found
 7:35:50 Cannot register string STR_WHITE - global stringtable not found
 7:35:50 Cannot register string STR_CONTACT - global stringtable not found
 7:35:50 Cannot register string STR_ENGAGE - global stringtable not found
 7:35:50 Cannot register string STR_COLUMN - global stringtable not found
 7:35:50 Cannot register string STR_STAGGERED - global stringtable not found
 7:35:50 Cannot register string STR_WEDGE - global stringtable not found
 7:35:50 Cannot register string STR_ECHL - global stringtable not found
 7:35:50 Cannot register string STR_ECHR - global stringtable not found
 7:35:50 Cannot register string STR_VEE - global stringtable not found
 7:35:50 Cannot register string STR_LINE - global stringtable not found
 7:35:50 Cannot register string STR_DIAMOND - global stringtable not found
 7:35:50 Cannot register string STR_FILE - global stringtable not found
 7:35:50 Cannot register string STR_NOCOMMAND - global stringtable not found
 7:35:50 Cannot register string STR_WAIT - global stringtable not found
 7:35:50 Cannot register string STR_ATTACK - global stringtable not found
 7:35:50 Cannot register string STR_SUPPRESS - global stringtable not found
 7:35:50 Cannot register string STR_HIDE - global stringtable not found
 7:35:50 Cannot register string STR_MOVE - global stringtable not found
 7:35:50 Cannot register string STR_HOOKCARGO - global stringtable not found
 7:35:50 Cannot register string STR_UNHOOKCARGO - global stringtable not found
 7:35:50 Cannot register string STR_HEAL - global stringtable not found
 7:35:50 Cannot register string STR_REPAIR - global stringtable not found
 7:35:50 Cannot register string STR_REFUEL - global stringtable not found
 7:35:50 Cannot register string STR_REARM - global stringtable not found
 7:35:50 Cannot register string STR_SUPPORT - global stringtable not found
 7:35:50 Cannot register string STR_JOIN - global stringtable not found
 7:35:50 Cannot register string STR_GETIN - global stringtable not found
 7:35:50 Cannot register string STR_FIRE - global stringtable not found
 7:35:50 Cannot register string STR_GETOUT - global stringtable not found
 7:35:50 Cannot register string STR_STOP - global stringtable not found
 7:35:50 Cannot register string STR_EXPECT - global stringtable not found
 7:35:50 Cannot register string STR_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_SCRIPTED - global stringtable not found
 7:35:50 Cannot register string STR_DISMISS - global stringtable not found
 7:35:50 Cannot register string STR_HEALSOLDIER - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_FIRST_AID - global stringtable not found
 7:35:50 Cannot register string STR_STATE_FIRST_AID_KITS - global stringtable not found
 7:35:50 Cannot register string STR_STATE_NOCOMMAND - global stringtable not found
 7:35:50 Cannot register string STR_STATE_WAIT - global stringtable not found
 7:35:50 Cannot register string STR_STATE_ATTACK - global stringtable not found
 7:35:50 Cannot register string STR_STATE_SUPPRESS - global stringtable not found
 7:35:50 Cannot register string STR_STATE_HIDE - global stringtable not found
 7:35:50 Cannot register string STR_STATE_MOVE - global stringtable not found
 7:35:50 Cannot register string STR_STATE_HOOKCARGO - global stringtable not found
 7:35:50 Cannot register string STR_STATE_UNHOOKCARGO - global stringtable not found
 7:35:50 Cannot register string STR_STATE_VIV_GETIN - global stringtable not found
 7:35:50 Cannot register string STR_STATE_VIV_DROP - global stringtable not found
 7:35:50 Cannot register string STR_STATE_VIV_UNLOAD - global stringtable not found
 7:35:50 Cannot register string STR_STATE_HEAL - global stringtable not found
 7:35:50 Cannot register string STR_STATE_REPAIR - global stringtable not found
 7:35:50 Cannot register string STR_STATE_REFUEL - global stringtable not found
 7:35:50 Cannot register string STR_STATE_REARM - global stringtable not found
 7:35:50 Cannot register string STR_STATE_SUPPORT - global stringtable not found
 7:35:50 Cannot register string STR_STATE_JOIN - global stringtable not found
 7:35:50 Cannot register string STR_STATE_GETIN - global stringtable not found
 7:35:50 Cannot register string STR_STATE_FIRE - global stringtable not found
 7:35:50 Cannot register string STR_STATE_GETOUT - global stringtable not found
 7:35:50 Cannot register string STR_STATE_STOP - global stringtable not found
 7:35:50 Cannot register string STR_STATE_EXPECT - global stringtable not found
 7:35:50 Cannot register string STR_STATE_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_STATE_SCRIPTED - global stringtable not found
 7:35:50 Cannot register string STR_STATE_DISMISS - global stringtable not found
 7:35:50 Cannot register string STR_STATE_HEALSOLDIER - global stringtable not found
 7:35:50 Cannot register string STR_STATE_FIRST_AID - global stringtable not found
 7:35:50 Cannot register string STR_STATE_HEALSOLDIER_SELF - global stringtable not found
 7:35:50 Cannot register string STR_AWAY - global stringtable not found
 7:35:50 Cannot register string STR_FOLLOW_ME - global stringtable not found
 7:35:50 Cannot register string STR_WATCH - global stringtable not found
 7:35:50 Cannot register string STR_WATCH_TARGET - global stringtable not found
 7:35:50 Cannot register string STR_LEADER - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_ALPHA - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_BRAVO - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_CHARLIE - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_DELTA - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_ECHO - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_FOXTROT - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_GOLF - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_HOTEL - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_INDIA - global stringtable not found
 7:35:50 Cannot register string STR_RADIO_JULIET - global stringtable not found
 7:35:50 Cannot register string STR_UI_CARGO_INF - global stringtable not found
 7:35:50 Cannot register string STR_UI_CARGO_FUEL - global stringtable not found
 7:35:50 Cannot register string STR_UI_CARGO_REPAIR - global stringtable not found
 7:35:50 Cannot register string STR_UI_CARGO_AMMO - global stringtable not found
 7:35:50 Cannot register string STR_UI_SPEED - global stringtable not found
 7:35:50 Cannot register string STR_UI_ALT - global stringtable not found
 7:35:50 Cannot register string STR_UI_WEAPON_ALT - global stringtable not found
 7:35:50 Cannot register string STR_UI_DEPTH - global stringtable not found
 7:35:50 Cannot register string STR_UI_SPEED_FREEFALL - global stringtable not found
 7:35:50 Cannot register string STR_UI_SPEED_VERTICAL_FREEFALL - global stringtable not found
 7:35:50 Cannot register string STR_UI_ALT_FREEFALL - global stringtable not found
 7:35:50 Cannot register string STR_UI_RADARRANGE - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_NAME - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_INFANTRY - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_SOFT - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_ARMORED - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_AIR - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_PLAYERS - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_TOTAL - global stringtable not found
 7:35:50 Cannot register string STR_MPTABLE_KILLED - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWIM_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWIM_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ADJUST_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ADJUST_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ADJUST_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ADJUST_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MOVE_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MOVE_BACK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TURN_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TURN_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MOVE_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MOVE_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_FAST_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SLOW_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MOVE_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MOVE_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_EVASIVE_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_EVASIVE_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_STAND - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_CROUCH - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PRONE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TACT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TACT_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TACT_SHORT - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_GETOUT - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_EJECT - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_GEAR_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_GEAR_UP - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_FLAPS_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_FLAPS_UP - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_LAUNCHCM - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_NEXTCM - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HELICOPTERTRIMON - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HELICOPTERTRIMOFF - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HELICOPTER_AUTOTRIM_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TURRET_ELEVATION_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TURRET_ELEVATION_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NEXT_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PREV_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_PRIMARY - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_HANDGUN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_SECONDARY - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_WPN_GRP1 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_WPN_GRP2 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_WPN_GRP3 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_WPN_GRP4 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_THROW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_CYCLE_THROWN_ITEMS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_FIRE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HOLD_BREATH - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_SALUTE - global stringtable not found
 7:35:50 Cannot register string STR_ACTION_SITDOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_DEFAULT_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ACTION_IN_MAP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_RELOAD_MAGAZINE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOCK_TARGETS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TARGET_EMPTY_NEXT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOCK_TURRET_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TARGET_EMPTY_NEXT_INFANTRY - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOCK_TARGET - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_REVEAL_TARGET - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TACTICAL_PING - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TEMP_RAISE_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TOGGLE_RAISE_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PREV_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NEXT_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ACTION_CONTEXT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ACTION_FREELOOK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HEADLIGHTS - global stringtable not found
 7:35:50 Cannot register string STR_UI_ALT_WANTED - global stringtable not found
 7:35:50 Cannot register string STR_UI_SPEED_WANTED - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NIGHT_VISION - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BINOCULAR - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HANDGUN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMPASS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMPASS_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_WATCH - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_WATCH_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GPS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GPS_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SHOW_MAP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HIDE_MAP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_UAV_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_UAV_VIEW_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_DEPLOY_WEAPON_AUTO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_DEPLOY_WEAPON_MANUAL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_HELP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TIME_INC - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TIME_DEC - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_OPTICS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_OPTICS_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PILOTCAMERA - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_OPTICS_MODE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PERSON_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TACTICAL_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LITE_INFO_TYPE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_CONT_IN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_CONT_OUT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_IN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_IN_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_OUT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_OUT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOCK_OR_ZOOM - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZOOM_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_ARROUND - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_ARROUND_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_LEFT_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_RIGHT_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_CENTER - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_LEFT_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_RIGHT_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_LEFT_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_RIGHT_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_DOWN_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_UP_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_LEFT_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_RIGHT_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_UP_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_DOWN_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_FORWARD_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_BACK_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_ROLL_LEFT_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_ROLL_RIGHT_CONT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_BACK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_ROLL_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_ROLL_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LOOK_SHIFT_CENTER - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_FREE_HEAD_MOVE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZEROING_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ZEROING_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GUN_ELEV_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GUN_ELEV_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GUN_ELEV_SLOW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GUN_ELEV_AUTO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LEAN_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LEAN_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LEAN_LEFT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_LEAN_RIGHT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PREV_CHANNEL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NEXT_CHANNEL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_CHAT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_VOICE_OVER_NET - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK_ALL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK_SIDE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK_COMMAND - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK_GROUP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK_VEHICLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_PUSH_TO_TALK_DIRECT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_1 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_2 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_3 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_4 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_5 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_6 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_7 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_8 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_9 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_SELECT_0 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_1 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_2 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_3 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_4 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_5 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_6 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_7 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_8 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_9 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_COMMANDING_MENU_0 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_1 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_2 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_3 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_4 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_5 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_6 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_7 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_8 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_9 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_GROUP_UNIT_0 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GROUP_PAGE_PREV - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_GROUP_PAGE_NEXT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_TEAM_WHITE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_TEAM_RED - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_TEAM_BLUE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_TEAM_GREEN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_TEAM_YELLOW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SET_TEAM_WHITE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SET_TEAM_RED - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SET_TEAM_BLUE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SET_TEAM_GREEN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SET_TEAM_YELLOW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NETWORK_STATS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NETWORK_PLAYERS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NETWORK_DS_INTERFACE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SELECT_ALL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TURBO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TURBO_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_VEHICLE_TURBO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_INGAME_PAUSE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MENU_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MENU_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_MENU_SELECT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_NAVIGATE_MENU - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_CLOSE_CONTEXT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_FORCE_COMMANDING_MODE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_CHEAT_1 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_CHEAT_2 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_SWITCH_COMMANDING_MENU - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ENGINE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_ACTIVESENSORSTOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_SWITCH_CAMERA - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_FREE_LOOK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_SELECT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_RESET_CAMERA - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MAGNETIZE_POINTS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MAGNETIZE_PLANES - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MAGNETIZE_YFIXED - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_RAISE_1M - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_RAISE_10CM - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_LOWER_1M - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_LOWER_10CM - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_RAISE_5M - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_RAISE_50CM - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_LOWER_5M - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_LOWER_50CM - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TERRAIN_SHOW_NODE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_SELECTION_TYPE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BACK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MOVE_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MOVE_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MOVE_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_MOVE_BACK - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TURBO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_LOOK_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_LOOK_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_LOOK_UP - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_LOOK_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_ZOOM_IN - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_ZOOM_OUT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_TEXTURE_INFO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BRUSH_RATIO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BRUSH_STRENGTH - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BRUSH_SMOOTH - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BRUSH_RANDOMIZE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BRUSH_SET_HEIGHT - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_BRUSH_OUTER - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_UNDO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_REDO - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_CREATE_OBJ - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_DUPLICATE_SEL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_REMOVE_SEL - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_ROTATE_X - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_ROTATE_Z - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_SCALE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_ELEVATE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_LOCK_ABSOLUTE_ELEVATION - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_BULD_CLEAR_ALL_ELEVATION_LOCKS - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TASK_OVERVIEW - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_TASK_OVERVIEW_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_DIARY - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_1 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_2 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_3 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_4 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_5 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_6 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_7 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_8 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_9 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_10 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_11 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_12 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_13 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_14 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_15 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_16 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_17 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_18 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_19 - global stringtable not found
 7:35:50 Cannot register string STR_USRACT_USER_20 - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_CONFIGURE_KEY_AMBIGUITY_PART - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_CONFIGURE_KEY_AMBIGUITY_FULL - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWIM_UP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWIM_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ADJUST_UP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ADJUST_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ADJUST_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ADJUST_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TURN_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TURN_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_MOVE_UP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_MOVE_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_FAST_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SLOW_FORWARD - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_MOVE_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_MOVE_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_EVASIVE_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_EVASIVE_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_STAND - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_CROUCH - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_PRONE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LEAN_LEFT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LEAN_RIGHT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LEAN_LEFT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LEAN_RIGHT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_WALK_RUN_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_WALK_RUN_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TACT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TACT_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TACT_SHORT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_NEXT_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_PREV_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_PRIMARY - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_HANDGUN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_SECONDARY - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_WPN_GRP1 - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_WPN_GRP2 - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_WPN_GRP3 - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SWITCH_WPN_GRP4 - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_DEFAULT_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ACTION_IN_MAP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_CYCLE_THROWN_ITEMS - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_RELOAD_MAGAZINE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LOCK_TARGETS - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TARGET_EMPTY_NEXT_INFANTRY - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LOCK_OR_ZOOM - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_REVEAL_TARGET - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TACTICAL_PING - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TEMP_RAISE_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TOGGLE_RAISE_WEAPON - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_PREV_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_NEXT_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ACTION - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ACTION_CONTEXT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ACTION_FREELOOK - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_HEADLIGHTS - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_NIGHT_VISION - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_BINOCULAR - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_HANDGUN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_COMPASS - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_COMPASS_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_WATCH - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_WATCH_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_GPS - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_GPS_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_UAV_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_UAV_VIEW_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_DEPLOY_WEAPON_AUTO - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_DEPLOY_WEAPON_MANUAL - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_SHOW_MAP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_HIDE_MAP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_HELP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TIME_INC - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TIME_DEC - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_OPTICS - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_OPTICS_TEMP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_PILOTCAMERA - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_OPTICS_MODE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_PERSON_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_TACTICAL_VIEW - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_IN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_IN_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_OUT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_OUT_TOGGLE - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_CONT_IN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZOOM_CONT_OUT - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZEROING_UP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_ZEROING_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_GUN_ELEV_UP - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_GUN_ELEV_DOWN - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_GUN_ELEV_SLOW - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_GUN_ELEV_AUTO - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_ARROUND - global stringtable not found
 7:35:50 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_ARROUND_TOGGLE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_LEFT_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_RIGHT_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_CENTER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_LEFT_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_RIGHT_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_LEFT_CONT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_RIGHT_CONT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_DOWN_CONT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOOK_UP_CONT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PREV_CHANNEL - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_NEXT_CHANNEL - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CHAT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_VOICE_OVER_NET - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK_ALL - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK_SIDE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK_COMMAND - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK_VEHICLE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_PUSH_TO_TALK_DIRECT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_1 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_2 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_3 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_4 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_5 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_6 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_7 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_8 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_9 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_SELECT_0 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_1 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_2 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_3 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_4 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_5 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_6 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_7 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_8 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_9 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU_0 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_1 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_2 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_3 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_4 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_5 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_6 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_7 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_8 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_9 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_GROUP_UNIT_0 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GROUP_PAGE_PREV - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GROUP_PAGE_NEXT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_TEAM_WHITE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_TEAM_RED - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_TEAM_BLUE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_TEAM_GREEN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_TEAM_YELLOW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SET_TEAM_WHITE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SET_TEAM_RED - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SET_TEAM_BLUE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SET_TEAM_GREEN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SET_TEAM_YELLOW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_NETWORK_STATS - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_NETWORK_PLAYERS - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SELECT_ALL - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TURBO - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TURBO_TOGGLE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_VEHICLE_TURBO - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_ENGINE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SENSORS - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HOLD_BREATH - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SALUTE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SITDOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SURRENDER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GET_OVER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_AIM_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_AIM_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_AIM_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_AIM_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_INGAME_PAUSE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_MENU_SELECT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_NAVIGATE_MENU - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CLOSE_CONTEXT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MODE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMANDING_MENU - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CYCLIC_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CYCLIC_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_RUDDER_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_RUDDER_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_FAST_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HOVER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HOVER_CANCEL - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_VECTORING_ON - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_VECTORING_OFF - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_BRAKE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_CYCLIC_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_CYCLIC_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_CYCLIC_LEFT_NEW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_CYCLIC_RIGHT_NEW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_COLLECTIVE_RAISE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_COLLECTIVE_LOWER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_ROPE_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_SLING_LOAD_MANAGER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_CYCLIC_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SUBMARINE_CYCLIC_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_LINEAR_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_LINEAR_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_WHEEL_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_WHEEL_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAR_FAST_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMAND_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMAND_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMAND_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMAND_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMAND_FAST - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_COMMAND_SLOW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CHANGE_GUNNER_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_VEH_LOCK_TARGETS - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TARGET_EMPTY_NEXT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LOCK_TURRET_VIEW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_SWAP_GUNNER - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_HELI_MANUAL_FIRE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TURN_IN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TURN_OUT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CANCEL_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TEAM_SWITCH_PREV - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TEAM_SWITCH_NEXT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GEAR - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_INTERFACE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_DELETE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_DESTROY - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_MOVE_CAM - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_LOCK_CAM - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_LEVEL_OBJ - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_ROTATE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_MULTIPLE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_CONTENT_WAYP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_MOVE_Y - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_GET_OUT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GETOUT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EJECT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GEAR_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_GEAR_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_FLAPS_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_FLAPS_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_LAUNCHCM - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_NEXTCM - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_USER_DEFINED - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_COLLAPSE_PARENT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_NIGHT_VISION - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_PERSON_VIEW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_PING_VIEW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_TOGGLE_INTERFACE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_TOGGLE_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_TOGGLE_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_MAP_TEXTURES - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_COMPASS - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CURATOR_WATCH - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_BACKWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_MOVE_TURBO - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_LOOK_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_LOOK_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_LOOK_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_EDITOR_CAMERA_LOOK_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_BACKWARD - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_TURBO1 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_MOVE_TURBO2 - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_ZOOM_IN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_ZOOM_OUT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_LOOK_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_LOOK_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_LOOK_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_LOOK_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_RESET - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_TARGET - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_VISION_MODE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_FLASHLIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_CAMERA_INTERFACE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TURRET_ELEVATION_UP - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TURRET_ELEVATION_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_DIARY - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TASK_OVERVIEW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_TASK_OVERVIEW_TOGGLE - global stringtable not found
 7:35:51 Cannot register string STR_CANCEL_MENU - global stringtable not found
 7:35:51 Cannot register string STR_MORE_MENU - global stringtable not found
 7:35:51 Cannot register string STR_MENU_BACKSPACE - global stringtable not found
 7:35:51 Cannot register string STR_TARGET_MENU - global stringtable not found
 7:35:51 Cannot register string STR_TARGET_MENU_SENSOR - global stringtable not found
 7:35:51 Cannot register string STR_TARGET_MENU_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_WATCH_AUTO - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_ANY - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_DRIVER - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_PILOT - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_COMM - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_GUNN - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_CARGO - global stringtable not found
 7:35:51 Cannot register string STR_GETIN_POS_PASSENGER - global stringtable not found
 7:35:51 Cannot register string STR_MENU_TARGET - global stringtable not found
 7:35:51 Cannot register string STR_CURRENCY_NONE - global stringtable not found
 7:35:51 Cannot register string STR_CURRENCY_LOT - global stringtable not found
 7:35:51 Cannot register string STR_CURRENCY_BLANK - global stringtable not found
 7:35:51 Cannot register string STR_CURRENCY_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_NEW_GAME - global stringtable not found
 7:35:51 Cannot register string STR_PLAY_WEST - global stringtable not found
 7:35:51 Cannot register string STR_PLAY_EAST - global stringtable not found
 7:35:51 Cannot register string STR_PLAY_GUERRILA - global stringtable not found
 7:35:51 Cannot register string STR_ARCUNIT_TITLE2 - global stringtable not found
 7:35:51 Cannot register string STR_ARCUNIT_TITLE4 - global stringtable not found
 7:35:51 Cannot register string STR_ARCWP_TITLE1 - global stringtable not found
 7:35:51 Cannot register string STR_ARCWP_TITLE2 - global stringtable not found
 7:35:51 Cannot register string STR_ARCSENS_TITLE1 - global stringtable not found
 7:35:51 Cannot register string STR_ARCSENS_TITLE2 - global stringtable not found
 7:35:51 Cannot register string STR_ARCMARK_TITLE1 - global stringtable not found
 7:35:51 Cannot register string STR_ARCMARK_TITLE2 - global stringtable not found
 7:35:51 Cannot register string STR_ARCMARK_TYPE1 - global stringtable not found
 7:35:51 Cannot register string STR_ARCMARK_TYPE2 - global stringtable not found
 7:35:51 Cannot register string STR_MAIN_PLAYER - global stringtable not found
 7:35:51 Cannot register string STR_NONPLAYABLE - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_COMMANDER - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_DRIVER - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_PILOT - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_GUNNER - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_C - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_D - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_P - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_G - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_CD - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_CP - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_CG - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_DG - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_PG - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_CDG - global stringtable not found
 7:35:51 Cannot register string STR_PLAYABLE_CPG - global stringtable not found
 7:35:51 Cannot register string STR_VOTE_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_STAT_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_STAT_TOTAL - global stringtable not found
 7:35:51 Cannot register string STR_STAT_YOU - global stringtable not found
 7:35:51 Cannot register string STR_STAT_GRP - global stringtable not found
 7:35:51 Cannot register string STR_TEMPL_MERGE - global stringtable not found
 7:35:51 Cannot register string STR_SOUND_NONE - global stringtable not found
 7:35:51 Cannot register string STR_MUSIC_NONE - global stringtable not found
 7:35:51 Cannot register string STR_MUSIC_SILENCE - global stringtable not found
 7:35:51 Cannot register string STR_NO_CHANGE - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_NEW - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_MIS_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_SURE - global stringtable not found
 7:35:51 Cannot register string STR_HOUSE_POSITION - global stringtable not found
 7:35:51 Cannot register string STR_SENSOR - global stringtable not found
 7:35:51 Cannot register string STR_RADIO_UNASSIGNED - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_START - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_RETRY - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_CONTINUE - global stringtable not found
 7:35:51 Cannot register string STR_CUST_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_CUST_NEW - global stringtable not found
 7:35:51 Cannot register string STR_MAIN_RANK - global stringtable not found
 7:35:51 Cannot register string STR_MAIN_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_MULTI_LAN - global stringtable not found
 7:35:51 Cannot register string STR_MULTI_REMOTE - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_NAME_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_AI - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_NONE - global stringtable not found
 7:35:51 Cannot register string STR_POSITION_COMMANDER - global stringtable not found
 7:35:51 Cannot register string STR_POSITION_DRIVER - global stringtable not found
 7:35:51 Cannot register string STR_POSITION_PILOT - global stringtable not found
 7:35:51 Cannot register string STR_POSITION_GUNNER - global stringtable not found
 7:35:51 Cannot register string STR_POSITION_LEADER - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_CADET - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_VETERAN - global stringtable not found
 7:35:51 Cannot register string STR_EXPORT_NONE - global stringtable not found
 7:35:51 Cannot register string STR_EXPORT_SINGLE - global stringtable not found
 7:35:51 Cannot register string STR_EXPORT_MULTI - global stringtable not found
 7:35:51 Cannot register string STR_EXPORT_MAIL - global stringtable not found
 7:35:51 Cannot register string STR_CA_ARCMAP_PUBLISH - global stringtable not found
 7:35:51 Cannot register string STR_VERSION_INFO - global stringtable not found
 7:35:51 Cannot register string STR_EMPTY_SLOT - global stringtable not found
 7:35:51 Cannot register string STR_NOT_ASSIGNED - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_TITLE_WEST - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_TITLE_EAST - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_TITLE_RESIST - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_TITLE_CIVIL - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_POOL_WEST - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_POOL_EAST - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_POOL_RESIST - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_POOL_CIVIL - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_ENABLE - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_DISABLE - global stringtable not found
 7:35:51 Cannot register string STR_NEWUSER_TITLE1 - global stringtable not found
 7:35:51 Cannot register string STR_NEWUSER_TITLE2 - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_YNORMAL - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_YREVERSED - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_JOYSTICK_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_JOYSTICK_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_OPT_SUBTITLES_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_OPT_SUBTITLES_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_OPT_RADIO_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_OPT_RADIO_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_RESUME - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_BEGIN - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_RESUME - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CAMPAIGN_REPLAY - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_LB_CONTINUE - global stringtable not found
 7:35:51 Cannot register string STR_VEHICLE_UNLOCKED - global stringtable not found
 7:35:51 Cannot register string STR_VEHICLE_DEFAULT - global stringtable not found
 7:35:51 Cannot register string STR_VEHICLE_LOCKED - global stringtable not found
 7:35:51 Cannot register string STR_VEHICLE_LOCKED_FOR_PLAYER - global stringtable not found
 7:35:51 Cannot register string STR_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_STANDARD - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_ADVANCED - global stringtable not found
 7:35:51 Cannot register string STR_LEFT_BUTTON - global stringtable not found
 7:35:51 Cannot register string STR_RIGHT_BUTTON - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_VOICE - global stringtable not found
 7:35:51 Cannot register string STR_ALL_VOICES - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_VOICE_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_VOICE_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_VERY_SMALL - global stringtable not found
 7:35:51 Cannot register string STR_SMALL - global stringtable not found
 7:35:51 Cannot register string STR_MEDIUM - global stringtable not found
 7:35:51 Cannot register string STR_LARGE - global stringtable not found
 7:35:51 Cannot register string STR_VERY_LARGE - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_CA_DIFFICULTY - global stringtable not found
 7:35:51 Cannot register string STR_DIFFICULTY_FORCED - global stringtable not found
 7:35:51 Cannot register string STR_DIFFICULTY_DISABLED_MP - global stringtable not found
 7:35:51 Cannot register string STR_DIFFICULTY_DISABLED_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_RESOLUTION_ASPECT - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_RESOLUTION_NOASPECT - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_DM_FULLSCREEN - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_DM_WINDOW - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_DM_FULLSCREENWINDOW - global stringtable not found
 7:35:51 Cannot register string STR_A3_OPTIONS_FPS - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_PROGRESS - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_DELETE_PROGRESS - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_STEAM_QUERY_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_PREVIEW_DOESNT_EXISTS - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_PREVIEW_UPLOAD_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_CANT_SAVE_PBO - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_CANT_UPLOAD_FILE - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_NOT_ENOUGHT_SPACE - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_UPDATE_PROGRESS - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_DUPLICATE_NAME - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_DOWNLOAD_PROGRESS - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLISH_NEW_ITEM - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SLIDER_TOOLTIP_ADDITIONAL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SLIDER_TOOLTIP_FREED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SUBSCRIBED_MISSIONS_LOADING - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SUBSCRIBED_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SUBSCRIBED_MISSIONS_AUTHOR - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SCENARIOS_FOLDER_INVITE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_QUOTA_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_MISSION_SIZE_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_DELETE_QUESTION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_UPDATE_QUESTION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SAVE_QUESTION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_CLOUD_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_DOWNLOAD_PUBLISHED_LIST_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_UPDATE_SUCCESSFUL - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PUBLIC - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_FRIENDS_ONLY - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_PRIVATE - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_WORKSHOP_AGREEMENT_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_OPEN_WORKSHOP_TOOLTIP_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_OPEN_WORKSHOP_TOOLTIP_GAME - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_FILE_DOWNLOAD_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_FILE_DOWNLOAD_DISK_FULL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SUBSCRIBED_LIST_DOWNLOAD_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_DLC_INGAME_CHECK_FAIL - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_WEAPON_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_MUZZLE_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_OPTICS_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_UNDERBAREL_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_FLASHLIGHT_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_ITEM_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_VEHICLE_ENTRY_PREVENTION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_DRONE_NOTIFICATION_HEADLINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_GEAR_TOOLTIP_PREMIUM_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_GEAR_TOOLTIP_PREMIUM_ACCESSORIES - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_GEAR_TOOLTIP_PREMIUM_ITEM - global stringtable not found
 7:35:51 Cannot register string STR_A3_DLC_GEAR_TOOLTIP_BOTTOM_LINE - global stringtable not found
 7:35:51 Cannot register string STR_A3_GEAR_TOOLTIP_ACCESSORIES - global stringtable not found
 7:35:51 Cannot register string STR_WORKSHOP_BUTTON_GAME - global stringtable not found
 7:35:51 Cannot register string STR_WORKSHOP_BUTTON_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_WORKSHOP_SORT_NAME - global stringtable not found
 7:35:51 Cannot register string STR_WORKSHOP_SORT_ADDED - global stringtable not found
 7:35:51 Cannot register string STR_WORKSHOP_SORT_RATING - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_SCREENSHOTS_DIRECTORY - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_OK - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_FAIL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_NO_CONNECTION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_LOGGED_IN_ELSEWHERE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_PROTOCOL_VER - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_PARAM - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_FILE_NOT_FOUND - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_BUSY - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_STATE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_NAME - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_EMAIL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_DUPLICATE_NAME - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCESS_DENIED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_TIMEOUT - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_BANNED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_NOT_FOUND - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_STEAMID - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_SERVICE_UNAVAILABLE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_NOT_LOGGED_ON - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_PENDING - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ENCRYPTION_FAILURE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INSUFFICIENT_PRIVILEDGE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_LIMIT_EXCEEDED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_REVOKED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_EXPIRED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ALREADY_REDEEMED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_DUPLICATE_REQUEST - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ALREADY_OWNED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_IP_NOT_FOUND - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_PERSIST_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_LOCKING_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_LOGON_SESSION_REPLACED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_CONNECTION_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_HAND_SHAKE_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_IO_FAILURE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_REMOTE_DISCONNECT - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_SHOPPING_CART_NOT_FOUND - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_BLOCKED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_IGNORED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_NO_MATCH - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_SERVICE_READ_ONLY - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_NOT_FEATURED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ADMINISTRATOR_OK - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_CONTENT_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_TRY_ANOTHER_CM - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_PASSWORD_REQUIRED_TO_KICK_SESSION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ALREADY_LOGGED_IN_ELSEWHERE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_SUSPENDED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_CANCELED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_DATA_CORRUPTION - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_DISK_FULL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_REMOTE_CALL_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_PASSWORD_UNSET - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_EXTERNAL_ACCOUNT_UNLINKED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_PSN_TICKET_INVALID - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_EXTERNAL_ACCOUNT_ALREADY_LINKED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_REMOTE_FILE_CONFLICT - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ILLEGAL_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_SAME_AS_PREVIOUS_VALUE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_LOGON_DENIED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_CANNOUT_USE_OLD_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_INVALID_LOGIN_AUTH_CODE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_LOGON_DENIED_NO_MAIL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_HARDWARE_NOT_CAPABLE_OF_IPT - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_IPT_INIT_ERROR - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_PARENTAL_CONTROL_RESTRICTED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_FACEBOOK_QUERY_ERROR - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_EXPIRED_LOGIN_AUTH_CODE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_LOGIN_RESTRICTION_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_LOCKED_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_ACCOUNT_LOGON_DENIED_VERIFIED_EMAIL_REQUIRED - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_NO_MATCHING_URL - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_BAD_RESPONSE - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_REQUIRE_PASSWORD_REENTRY - global stringtable not found
 7:35:51 Cannot register string STR_STEAM_RESULT_VALUE_OUT_OF_RANGE - global stringtable not found
 7:35:51 Cannot register string STR_NO_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_PLAYER_ID - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_TITLE_MP - global stringtable not found
 7:35:51 Cannot register string STR_DISP_DEFAULT - global stringtable not found
 7:35:51 Cannot register string STR_BRIEFING - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_NAME_INIT - global stringtable not found
 7:35:51 Cannot register string STR_DEDICATED_SERVER - global stringtable not found
 7:35:51 Cannot register string STR_MPW_NEW_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_MPW_NEW_EDIT2 - global stringtable not found
 7:35:51 Cannot register string STR_MPW_NEW_WIZ - global stringtable not found
 7:35:51 Cannot register string STR_CFG_MARKERS_MARKER - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CLIENT_READY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CONTINUE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_BACK - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OK - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CANCEL - global stringtable not found
 7:35:51 Cannot register string STR_DISP_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_UI_DEBUG_BUT_APPLY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CLOSE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CLOSEALL - global stringtable not found
 7:35:51 Cannot register string STR_TIME_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MULTI_SOCKETS - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MULTI_DPLAY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MPROLE_ROLES - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MPSETUP_ROLES_WEST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MPSETUP_ROLES_EAST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MPSETUP_ROLES_GUERRILA - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MPSETUP_ROLES_CIVILIAN - global stringtable not found
 7:35:51 Cannot register string STR_MPSETUP_GRP_DESC - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CHOOSE_ROLE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_OK_LAUNCH_GAME - global stringtable not found
 7:35:51 Cannot register string STR_MSG_OK_READY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_WAIT_FOR_OTHERS - global stringtable not found
 7:35:51 Cannot register string STR_MSG_WAIT_CONNECTING - global stringtable not found
 7:35:51 Cannot register string STR_UNLOCK_HOST - global stringtable not found
 7:35:51 Cannot register string STR_LOCK_HOST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_PORT_BUTTON - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_DISABLE_AI - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_ENABLE_AI - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_ENABLE_ALL_AI - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_DISABLE_ALL_AI - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_INFORMATION - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_FILL_ALL_SLOTS - global stringtable not found
 7:35:51 Cannot register string STR_TOOLTIP_DROP - global stringtable not found
 7:35:51 Cannot register string STR_ARCMAP_SHOW_IDS - global stringtable not found
 7:35:51 Cannot register string STR_ARCMAP_HIDE_IDS - global stringtable not found
 7:35:51 Cannot register string STR_ARCMAP_SHOW_TEXTURES - global stringtable not found
 7:35:51 Cannot register string STR_ARCMAP_HIDE_TEXTURES - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYARCADEMAP_MSG_CLEAR - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYARCADEMAP_MSG_EXIT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_DISCONNECT - global stringtable not found
 7:35:51 Cannot register string STR_SESSIONS_SOURCE - global stringtable not found
 7:35:51 Cannot register string STR_SESSIONS_INTERNET - global stringtable not found
 7:35:51 Cannot register string STR_FILTER_FULL - global stringtable not found
 7:35:51 Cannot register string STR_FILTER_PASSWORDED - global stringtable not found
 7:35:51 Cannot register string STR_FILTER_MONETIZED - global stringtable not found
 7:35:51 Cannot register string STR_FILTER_BATTLEYE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_SHOW - global stringtable not found
 7:35:51 Cannot register string STR_DISP_HIDE - global stringtable not found
 7:35:51 Cannot register string STR_TIME_ACC_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYDSINTERFACE_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYREMOTEMISSIONS_CA_TEXTMAPS - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_OK - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_WRONG_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_LOCKED - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_DIFFERENT_MODS - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_SIGN_OR_SAME_MODS_REQUIRED - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_STATUS_FILEPATCHING - global stringtable not found
 7:35:51 Cannot register string STR_COPY_APP_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_APP_VERSION_COPIED - global stringtable not found
 7:35:51 Cannot register string STR_USERACT_DLC_SCREEN - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_TOOLTIPS_DLC_SCREEN - global stringtable not found
 7:35:51 Cannot register string STR_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_MAGAZINE - global stringtable not found
 7:35:51 Cannot register string STR_USE_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_CHANNEL_GLOBAL - global stringtable not found
 7:35:51 Cannot register string STR_CHANNEL_SIDE - global stringtable not found
 7:35:51 Cannot register string STR_CHANNEL_COMMAND - global stringtable not found
 7:35:51 Cannot register string STR_CHANNEL_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_CHANNEL_VEHICLE - global stringtable not found
 7:35:51 Cannot register string STR_CHANNEL_DIRECT - global stringtable not found
 7:35:51 Cannot register string STR_COMMANDER - global stringtable not found
 7:35:51 Cannot register string STR_DRIVER - global stringtable not found
 7:35:51 Cannot register string STR_PILOT - global stringtable not found
 7:35:51 Cannot register string STR_GUNNER - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_COMPLETED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_INCOMPLETED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_KILLED - global stringtable not found
 7:35:51 Cannot register string STR_UI_PRESSEND - global stringtable not found
 7:35:51 Cannot register string STR_UI_PRESSENDRETRY - global stringtable not found
 7:35:51 Cannot register string STR_LIVES_1 - global stringtable not found
 7:35:51 Cannot register string STR_LIVES_3 - global stringtable not found
 7:35:51 Cannot register string STR_LIVES_MORE - global stringtable not found
 7:35:51 Cannot register string STR_KILLED_BY - global stringtable not found
 7:35:51 Cannot register string STR_KILLED - global stringtable not found
 7:35:51 Cannot register string STR_KILLED_BY_FRIENDLY - global stringtable not found
 7:35:51 Cannot register string STR_KILLED_FRIENDLY - global stringtable not found
 7:35:51 Cannot register string STR_MIS_STATE_INTERRUPTED - global stringtable not found
 7:35:51 Cannot register string STR_MIS_STATE_COMPLETED - global stringtable not found
 7:35:51 Cannot register string STR_MIS_STATE_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MIS_STATE_ERROR - global stringtable not found
 7:35:51 Cannot register string STR_OBJECTIVE_DONE - global stringtable not found
 7:35:51 Cannot register string STR_OBJECTIVE_UPDATED - global stringtable not found
 7:35:51 Cannot register string STR_MP_VALIDERROR - global stringtable not found
 7:35:51 Cannot register string STR_MP_VALIDERROR_1 - global stringtable not found
 7:35:51 Cannot register string STR_MP_VALIDERROR_2 - global stringtable not found
 7:35:51 Cannot register string STR_MP_LOGGED - global stringtable not found
 7:35:51 Cannot register string STR_MP_LOGGED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_MP_CONNECTION_LOOSING - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_WAIT - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_SETUP - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_DEBRIEFING - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_BRIEFING - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_SESSION_REQUIRED - global stringtable not found
 7:35:51 Cannot register string STR_AILEVEL_NOVICE - global stringtable not found
 7:35:51 Cannot register string STR_AILEVEL_NORMAL - global stringtable not found
 7:35:51 Cannot register string STR_AILEVEL_EXPERT - global stringtable not found
 7:35:51 Cannot register string STR_AILEVEL_CUSTOM - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SELECT_GAME - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NAME_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PLAYERNAME_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PLAYERNAME_INVALID - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PLAYER_EXIST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NETWORK_FAIL - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NO_PLAYER - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NO_PLAYERS - global stringtable not found
 7:35:51 Cannot register string STR_MSG_ONE_SIDE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LOT_UNITS - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LOT_GROUPS - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NO_VEH_SELECT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_BAD_DATA_TYPE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MARKER_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MARKER_EXIST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SITE_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SITE_EXIST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SELECT_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_VEH_NAME - global stringtable not found
 7:35:51 Cannot register string STR_MSG_VEH_TEXT_USED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LOAD_TEMPL_FAIL - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SAVE_TEMPL_FAIL - global stringtable not found
 7:35:51 Cannot register string STR_MSG_TEMPL_READONLY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_TEMPL_ACCESSDENIED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_ASSIGN_PLAYERS - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_BAD_ADDRESS - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_CAN_FIND_HOST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_LOOKING_FOR_HOST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_W_ASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_E_ASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_R_ASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_C_ASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_NO_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_CONNECT_ERROR - global stringtable not found
 7:35:51 Cannot register string STR_MSG_ADDON_MISSING - global stringtable not found
 7:35:51 Cannot register string STR_MSG_ADDON_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LAUNCH_GAME - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MPW_NONAME - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MISSION_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NO_WORLD - global stringtable not found
 7:35:51 Cannot register string STR_CLIENT_WAIT_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_ENABLE_ALL - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_DISABLE_ALL - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_SESSION_FULL - global stringtable not found
 7:35:51 Cannot register string STR_MSG_UPNP_SETUP - global stringtable not found
 7:35:51 Cannot register string STR_MSG_UPNP_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_RECORDTITLE_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_STAT_KILL_CIVIL - global stringtable not found
 7:35:51 Cannot register string STR_STAT_KILL_ENEMY_SOLDIER - global stringtable not found
 7:35:51 Cannot register string STR_STAT_KILL_FRIENDLY_SOLDIER - global stringtable not found
 7:35:51 Cannot register string STR_STAT_KILL_CIVILIAN_UNIT - global stringtable not found
 7:35:51 Cannot register string STR_STAT_KILL_ENEMY_UNIT - global stringtable not found
 7:35:51 Cannot register string STR_STAT_KILL_FRIENDLY_UNIT - global stringtable not found
 7:35:51 Cannot register string STR_STAT_UNIT_LOST - global stringtable not found
 7:35:51 Cannot register string STR_AC_MOVE - global stringtable not found
 7:35:51 Cannot register string STR_AC_DESTROY - global stringtable not found
 7:35:51 Cannot register string STR_AC_GETIN - global stringtable not found
 7:35:51 Cannot register string STR_AC_SEEKANDDESTROY - global stringtable not found
 7:35:51 Cannot register string STR_AC_JOIN - global stringtable not found
 7:35:51 Cannot register string STR_AC_LEADER - global stringtable not found
 7:35:51 Cannot register string STR_AC_GETOUT - global stringtable not found
 7:35:51 Cannot register string STR_AC_CYCLE - global stringtable not found
 7:35:51 Cannot register string STR_AC_LOAD - global stringtable not found
 7:35:51 Cannot register string STR_AC_UNLOAD - global stringtable not found
 7:35:51 Cannot register string STR_AC_TRANSPORTUNLOAD - global stringtable not found
 7:35:51 Cannot register string STR_AC_UNHOOK - global stringtable not found
 7:35:51 Cannot register string STR_AC_HOOK - global stringtable not found
 7:35:51 Cannot register string STR_AC_VEHICLE_IN_VEHICLE_GETIN - global stringtable not found
 7:35:51 Cannot register string STR_AC_VEHICLE_IN_VEHICLE_GETOUT - global stringtable not found
 7:35:51 Cannot register string STR_AC_VEHICLE_IN_VEHICLE_UNLOAD - global stringtable not found
 7:35:51 Cannot register string STR_AC_HOLD - global stringtable not found
 7:35:51 Cannot register string STR_AC_SENTRY - global stringtable not found
 7:35:51 Cannot register string STR_AC_GUARD - global stringtable not found
 7:35:51 Cannot register string STR_AC_TALK - global stringtable not found
 7:35:51 Cannot register string STR_AC_SCRIPTED - global stringtable not found
 7:35:51 Cannot register string STR_AC_SUPPORT - global stringtable not found
 7:35:51 Cannot register string STR_AC_GETINNEAREST - global stringtable not found
 7:35:51 Cannot register string STR_AC_DISMISS - global stringtable not found
 7:35:51 Cannot register string STR_AC_LOITER - global stringtable not found
 7:35:51 Cannot register string STR_AC_FOLLOW - global stringtable not found
 7:35:51 Cannot register string STR_AC_AND - global stringtable not found
 7:35:51 Cannot register string STR_AC_OR - global stringtable not found
 7:35:51 Cannot register string STR_AC_LAND - global stringtable not found
 7:35:51 Cannot register string STR_SYNC_WAITING - global stringtable not found
 7:35:51 Cannot register string STR_SPECIAL_NONE - global stringtable not found
 7:35:51 Cannot register string STR_SPECIAL_CARGO - global stringtable not found
 7:35:51 Cannot register string STR_SPECIAL_FLYING - global stringtable not found
 7:35:51 Cannot register string STR_SPECIAL_FORM - global stringtable not found
 7:35:51 Cannot register string STR_SPECIAL_CAN_COLLIDE - global stringtable not found
 7:35:51 Cannot register string STR_AGE_ACTUAL - global stringtable not found
 7:35:51 Cannot register string STR_AGE_5MIN - global stringtable not found
 7:35:51 Cannot register string STR_AGE_10MIN - global stringtable not found
 7:35:51 Cannot register string STR_AGE_15MIN - global stringtable not found
 7:35:51 Cannot register string STR_AGE_30MIN - global stringtable not found
 7:35:51 Cannot register string STR_AGE_60MIN - global stringtable not found
 7:35:51 Cannot register string STR_AGE_120MIN - global stringtable not found
 7:35:51 Cannot register string STR_AGE_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_NONE - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_ANYBODY - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_ALPHA - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_BRAVO - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_CHARLIE - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_DELTA - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_ECHO - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_FOXTROT - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_GOLF - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_HOTEL - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_INDIA - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_JULIET - global stringtable not found
 7:35:51 Cannot register string STR_EAST_SEIZED - global stringtable not found
 7:35:51 Cannot register string STR_WEST_SEIZED - global stringtable not found
 7:35:51 Cannot register string STR_GUERRILA_SEIZED - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_STATIC - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_VEHICLE - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_LEADER - global stringtable not found
 7:35:51 Cannot register string STR_SENSORACTIV_MEMBER - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_NONE - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_GUARD_EAST - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_GUARD_WEST - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_GUARD_GUERRILA - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_SWITCH - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_END1 - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_END2 - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_END3 - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_END4 - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_END5 - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_END6 - global stringtable not found
 7:35:51 Cannot register string STR_SENSORTYPE_LOOSE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCSENS_PRESYES - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCSENS_PRESNO - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCSENS_DETWEST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCSENS_DETEAST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCSENS_DETGUERRILA - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCSENS_DETCIVILIAN - global stringtable not found
 7:35:51 Cannot register string STR_SPEED_UNCHANGED - global stringtable not found
 7:35:51 Cannot register string STR_SPEED_LIMITED - global stringtable not found
 7:35:51 Cannot register string STR_SPEED_NORMAL - global stringtable not found
 7:35:51 Cannot register string STR_SPEED_FULL - global stringtable not found
 7:35:51 Cannot register string STR_COMBAT_UNCHANGED - global stringtable not found
 7:35:51 Cannot register string STR_COMBAT_CARELESS - global stringtable not found
 7:35:51 Cannot register string STR_COMBAT_SAFE - global stringtable not found
 7:35:51 Cannot register string STR_COMBAT_AWARE - global stringtable not found
 7:35:51 Cannot register string STR_COMBAT_COMBAT - global stringtable not found
 7:35:51 Cannot register string STR_COMBAT_STEALTH - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_LEADER - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_UNDERSURFACE - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_ABOVESURFACE - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_BOTTOM - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_RELATIVEUP - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_RELATIVEDOWN - global stringtable not found
 7:35:51 Cannot register string STR_DEPTH_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_NONE - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_STATIC - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_TRACKING - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_FOLLOW_NEAR - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_FOLLOW_FAR - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_EXTERNAL - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_EXTERNAL_FIX - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_ALIGNED - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_ZOOMIN - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_ZOOMOUT - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_BOOMANDZOOM - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_TRANSITION - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_TERMINATE - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_TOP - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_FRONT - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_BACK - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_LEFTFRONT - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_RIGHTFRONT - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_LEFTBACK - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_RIGHTBACK - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_LEFTTOP - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_RIGHTTOP - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_FRONTTOP - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_BACKTOP - global stringtable not found
 7:35:51 Cannot register string STR_CAMEFFECT_BOTTOM - global stringtable not found
 7:35:51 Cannot register string STR_TITTYPE_NONE - global stringtable not found
 7:35:51 Cannot register string STR_TITTYPE_OBJECT - global stringtable not found
 7:35:51 Cannot register string STR_TITTYPE_RESOURCE - global stringtable not found
 7:35:51 Cannot register string STR_TITTYPE_TEXT - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_PLAIN - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_PLAIN_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_BLACK - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_BLACKFADED - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_BLACKOUT - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_BLACKIN - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_WHITEOUT - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_WHITEIN - global stringtable not found
 7:35:51 Cannot register string STR_TITEFFECT_PLAIN_NOFADE - global stringtable not found
 7:35:51 Cannot register string STR_SECTION_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_SECTION_INTRO - global stringtable not found
 7:35:51 Cannot register string STR_SECTION_OUTRO_WIN - global stringtable not found
 7:35:51 Cannot register string STR_SECTION_OUTRO_LOOSE - global stringtable not found
 7:35:51 Cannot register string STR_SECTION_CUTSCENE - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_INIT - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_WORLD - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_INTRO - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_GAME - global stringtable not found
 7:35:51 Cannot register string STR_SAVE_GAME - global stringtable not found
 7:35:51 Cannot register string STR_AUTOSAVE_GAME - global stringtable not found
 7:35:51 Cannot register string STR_WAIT_NETWORK - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_SEND - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_RECEIVE - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_RECEIVE_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_CREATE_SERVER - global stringtable not found
 7:35:51 Cannot register string STR_CREATE_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_SHUTDOWN - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_SENDING - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_DELETING - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_UPDATING - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_COPYING - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_CREATING - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_UPLOADING_STATS - global stringtable not found
 7:35:51 Cannot register string STR_NETWORK_UPLOADING_STATS_MP - global stringtable not found
 7:35:51 Cannot register string STR_STORAGE_DEVICE_CHECK - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_WEAPONS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_ITEMS1 - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_ITEMS2 - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SPECIAL - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_PRIMARY_WEAPONS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SECONDARY_WEAPONS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SPECIAL_ITEMS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SPECIAL_MAGAZINES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SPECIAL_HANDGUN - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SPECIAL_HANDGUN_MAGAZINES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_POOL_CANCEL - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_POOL_NONE - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_GROUP_LEADER - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_COMMANDER - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_DRIVER - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_GUNNER - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_CARGO - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_TEAM_SWITCH - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_DURATION_LONG - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_DURATION_SHORT - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SCORE - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_OBJECTIVES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_STATISTICS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_YOURKILLS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_YOURKILLS_FRIENDLY - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_YOURKILLS_CIVIL - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_CASUALTIES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_FORMAT_GENERIC_TIMES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_FORMAT_YOU_TIMES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_FORMAT_YOU_ONCE - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_FORMAT_BY_TIMES - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_FORMAT_BY_ONCE - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_STAT_OPEN - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_STAT_CLOSE - global stringtable not found
 7:35:51 Cannot register string STR_WORD_ALL - global stringtable not found
 7:35:51 Cannot register string STR_WORD_ALLGROUP - global stringtable not found
 7:35:51 Cannot register string STR_WORD_ENEMY - global stringtable not found
 7:35:51 Cannot register string STR_WORD_FRIENDLY - global stringtable not found
 7:35:51 Cannot register string STR_WORD_NEUTRAL - global stringtable not found
 7:35:51 Cannot register string STR_WORD_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_WORD_TEAM_MAIN - global stringtable not found
 7:35:51 Cannot register string STR_WORD_TEAM_RED - global stringtable not found
 7:35:51 Cannot register string STR_WORD_TEAM_GREEN - global stringtable not found
 7:35:51 Cannot register string STR_WORD_TEAM_BLUE - global stringtable not found
 7:35:51 Cannot register string STR_WORD_TEAM_YELLOW - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT1 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT2 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT3 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT4 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT5 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT6 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT7 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT8 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT9 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT10 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT11 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_AT12 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST50 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST75 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST100 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST200 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST300 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST400 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST500 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST600 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST700 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST800 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST1000 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST1500 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST2000 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DIST2500 - global stringtable not found
 7:35:51 Cannot register string STR_WORD_DISTFAR - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_1 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_1 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_2 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_2 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_3 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_3 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_4 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_4 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_5 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_5 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_6 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_6 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_7 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_7 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_8 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_8 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_9 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_9 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_10 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_10 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_11 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_11 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_12 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_12 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_13 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_13 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_14 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_14 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_15 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_15 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_16 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_16 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_17 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_17 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_18 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_18 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_19 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_19 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_20 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_20 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_21 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_21 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_22 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_22 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_23 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_23 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_24 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_24 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_25 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_25 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_26 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_26 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_27 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_27 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_28 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_28 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_29 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_29 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_30 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_30 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_31 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_31 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_32 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_32 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_33 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_33 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_34 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_34 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_35 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_35 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_36 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_36 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_37 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_37 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_38 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_38 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_39 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_39 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_40 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_40 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_41 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_41 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_42 - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_42 - global stringtable not found
 7:35:51 Cannot register string STR_QUOTE_LAST - global stringtable not found
 7:35:51 Cannot register string STR_AUTHOR_LAST - global stringtable not found
 7:35:51 Cannot register string STR_DN_TREE - global stringtable not found
 7:35:51 Cannot register string STR_DN_BUSH - global stringtable not found
 7:35:51 Cannot register string STR_DN_BUILDING - global stringtable not found
 7:35:51 Cannot register string STR_DN_HOUSE - global stringtable not found
 7:35:51 Cannot register string STR_DN_CHURCH - global stringtable not found
 7:35:51 Cannot register string STR_DN_CHAPEL - global stringtable not found
 7:35:51 Cannot register string STR_DN_CROSS - global stringtable not found
 7:35:51 Cannot register string STR_DN_ROCK - global stringtable not found
 7:35:51 Cannot register string STR_DN_FOREST - global stringtable not found
 7:35:51 Cannot register string STR_DN_BUS_STOP - global stringtable not found
 7:35:51 Cannot register string STR_DN_POWERSOLAR - global stringtable not found
 7:35:51 Cannot register string STR_DN_POWERWIND - global stringtable not found
 7:35:51 Cannot register string STR_DN_TRANSMITTER - global stringtable not found
 7:35:51 Cannot register string STR_Q_NORTH - global stringtable not found
 7:35:51 Cannot register string STR_Q_NORTH_EAST - global stringtable not found
 7:35:51 Cannot register string STR_Q_EAST - global stringtable not found
 7:35:51 Cannot register string STR_Q_SOUTH_EAST - global stringtable not found
 7:35:51 Cannot register string STR_Q_SOUTH - global stringtable not found
 7:35:51 Cannot register string STR_Q_SOUTH_WEST - global stringtable not found
 7:35:51 Cannot register string STR_Q_WEST - global stringtable not found
 7:35:51 Cannot register string STR_Q_NORTH_WEST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCMARK_ICON - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCMARK_RECT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCMARK_ELLIPSE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCWP_SHOW_NEVER - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCWP_SHOW_EASY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ARCWP_SHOW_ALWAYS - global stringtable not found
 7:35:51 Cannot register string STR_KEYBOARD_FORMAT_DOUBLE_TAP - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_WITH_CTRL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_ESCAPE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_1 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_2 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_3 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_4 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_5 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_6 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_7 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_8 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_9 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_0 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MINUS - global stringtable not found
 7:35:51 Cannot register string STR_DIK_EQUALS - global stringtable not found
 7:35:51 Cannot register string STR_DIK_BACK - global stringtable not found
 7:35:51 Cannot register string STR_DIK_TAB - global stringtable not found
 7:35:51 Cannot register string STR_DIK_Q - global stringtable not found
 7:35:51 Cannot register string STR_DIK_W - global stringtable not found
 7:35:51 Cannot register string STR_DIK_E - global stringtable not found
 7:35:51 Cannot register string STR_DIK_R - global stringtable not found
 7:35:51 Cannot register string STR_DIK_T - global stringtable not found
 7:35:51 Cannot register string STR_DIK_Y - global stringtable not found
 7:35:51 Cannot register string STR_DIK_U - global stringtable not found
 7:35:51 Cannot register string STR_DIK_I - global stringtable not found
 7:35:51 Cannot register string STR_DIK_O - global stringtable not found
 7:35:51 Cannot register string STR_DIK_P - global stringtable not found
 7:35:51 Cannot register string STR_DIK_LBRACKET - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RBRACKET - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RETURN - global stringtable not found
 7:35:51 Cannot register string STR_DIK_LCONTROL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_CONTROL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_A - global stringtable not found
 7:35:51 Cannot register string STR_DIK_S - global stringtable not found
 7:35:51 Cannot register string STR_DIK_D - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F - global stringtable not found
 7:35:51 Cannot register string STR_DIK_G - global stringtable not found
 7:35:51 Cannot register string STR_DIK_H - global stringtable not found
 7:35:51 Cannot register string STR_DIK_J - global stringtable not found
 7:35:51 Cannot register string STR_DIK_K - global stringtable not found
 7:35:51 Cannot register string STR_DIK_L - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SEMICOLON - global stringtable not found
 7:35:51 Cannot register string STR_DIK_APOSTROPHE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_GRAVE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_LSHIFT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SHIFT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_BACKSLASH - global stringtable not found
 7:35:51 Cannot register string STR_DIK_Z - global stringtable not found
 7:35:51 Cannot register string STR_DIK_X - global stringtable not found
 7:35:51 Cannot register string STR_DIK_C - global stringtable not found
 7:35:51 Cannot register string STR_DIK_V - global stringtable not found
 7:35:51 Cannot register string STR_DIK_B - global stringtable not found
 7:35:51 Cannot register string STR_DIK_N - global stringtable not found
 7:35:51 Cannot register string STR_DIK_M - global stringtable not found
 7:35:51 Cannot register string STR_DIK_COMMA - global stringtable not found
 7:35:51 Cannot register string STR_DIK_PERIOD - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SLASH - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RSHIFT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MULTIPLY - global stringtable not found
 7:35:51 Cannot register string STR_DIK_LMENU - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SPACE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_CAPITAL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F1 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F2 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F3 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F4 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F5 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F6 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F7 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F8 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F9 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F10 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMLOCK - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SCROLL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD7 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD8 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD9 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SUBTRACT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD4 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD5 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD6 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_ADD - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD1 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD2 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD3 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPAD0 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_DECIMAL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_OEM_102 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F11 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F12 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F13 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F14 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_F15 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_KANA - global stringtable not found
 7:35:51 Cannot register string STR_DIK_ABNT_C1 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_CONVERT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NOCONVERT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_YEN - global stringtable not found
 7:35:51 Cannot register string STR_DIK_ABNT_C2 - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPADEQUALS - global stringtable not found
 7:35:51 Cannot register string STR_DIK_PREVTRACK - global stringtable not found
 7:35:51 Cannot register string STR_DIK_AT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_COLON - global stringtable not found
 7:35:51 Cannot register string STR_DIK_UNDERLINE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_KANJI - global stringtable not found
 7:35:51 Cannot register string STR_DIK_STOP - global stringtable not found
 7:35:51 Cannot register string STR_DIK_AX - global stringtable not found
 7:35:51 Cannot register string STR_DIK_UNLABELED - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NEXTTRACK - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPADENTER - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RCONTROL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MUTE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_CALCULATOR - global stringtable not found
 7:35:51 Cannot register string STR_DIK_PLAYPAUSE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MEDIASTOP - global stringtable not found
 7:35:51 Cannot register string STR_DIK_VOLUMEDOWN - global stringtable not found
 7:35:51 Cannot register string STR_DIK_VOLUMEUP - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBHOME - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NUMPADCOMMA - global stringtable not found
 7:35:51 Cannot register string STR_DIK_DIVIDE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SYSRQ - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RMENU - global stringtable not found
 7:35:51 Cannot register string STR_DIK_PAUSE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_HOME - global stringtable not found
 7:35:51 Cannot register string STR_DIK_UP - global stringtable not found
 7:35:51 Cannot register string STR_DIK_PRIOR - global stringtable not found
 7:35:51 Cannot register string STR_DIK_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_END - global stringtable not found
 7:35:51 Cannot register string STR_DIK_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_DIK_NEXT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_INSERT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_DELETE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_LWIN - global stringtable not found
 7:35:51 Cannot register string STR_DIK_RWIN - global stringtable not found
 7:35:51 Cannot register string STR_DIK_APPS - global stringtable not found
 7:35:51 Cannot register string STR_DIK_POWER - global stringtable not found
 7:35:51 Cannot register string STR_DIK_SLEEP - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WAKE - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBSEARCH - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBFAVORITES - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBREFRESH - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBSTOP - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBFORWARD - global stringtable not found
 7:35:51 Cannot register string STR_DIK_WEBBACK - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MYCOMPUTER - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MAIL - global stringtable not found
 7:35:51 Cannot register string STR_DIK_MEDIASELECT - global stringtable not found
 7:35:51 Cannot register string STR_DIK_ALT - global stringtable not found
 7:35:51 Cannot register string STR_MOUSE_FORMAT_DOUBLE_CLICK - global stringtable not found
 7:35:51 Cannot register string STR_MOUSE_FORMAT_HOLD - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_0 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_1 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_2 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_3 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_4 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_5 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_6 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_7 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_UP - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_WHEEL_UP - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_WHEEL_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_0 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_1 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_2 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_3 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_4 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_5 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_6 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_7 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_8 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_9 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_10 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_TRACKIR_11 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_0 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_1 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_2 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_3 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_4 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_5 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_6 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_7 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_8 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_9 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_10 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_11 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_12 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_13 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_14 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_15 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_16 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_17 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_18 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_19 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_20 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_21 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_22 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_23 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_24 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_25 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_26 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_27 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_28 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_29 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_30 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_31 - global stringtable not found
 7:35:51 Cannot register string STR_FADE_AWAY - global stringtable not found
 7:35:51 Cannot register string STR_FADE_CAUTION - global stringtable not found
 7:35:51 Cannot register string STR_FADE_REMMEMBER - global stringtable not found
 7:35:51 Cannot register string STR_MP_CONNECT - global stringtable not found
 7:35:51 Cannot register string STR_MP_DISCONNECT - global stringtable not found
 7:35:51 Cannot register string STR_MP_CONNECTING - global stringtable not found
 7:35:51 Cannot register string STR_MP_KICKED - global stringtable not found
 7:35:51 Cannot register string STR_MP_KICKED_TOO_MANY_LOGIN_ATTEMPTS - global stringtable not found
 7:35:51 Cannot register string STR_MP_KICKED_SLOW_NETWORK - global stringtable not found
 7:35:51 Cannot register string STR_MP_BANNED - global stringtable not found
 7:35:51 Cannot register string STR_MP_TIMEOUT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CLIENT_TEXT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_CLIENT_TEXT_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_WALK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_WALK_RUN_TOGGLE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_WALK_RUN_TEMP - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_X_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_Y_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_Z_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_X_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_Y_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_Z_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_SLIDER_1_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_SLIDER_2_POS - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_X_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_Y_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_Z_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_X_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_Y_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_Z_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_SLIDER_1_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_SLIDER_2_NEG - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_AXIS_X - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_AXIS_Y - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_MOUSE_AXIS_Z - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_N - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_NE - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_E - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_SE - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_S - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_SW - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_W - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_POV_NW - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_TURN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_ACCELERATE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_THRUST - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_RUDDER - global stringtable not found
 7:35:51 Cannot register string STR_SERVER_MONITOR - global stringtable not found
 7:35:51 Cannot register string STR_MP_SERVER - global stringtable not found
 7:35:51 Cannot register string STR_MP_MASTER - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYMULTIPLAYER_NUMOFSERVERS - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYMULTIPLAYER_REFRESHDONE - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYMULTIPLAYER_REFRESHINPROGRESS - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYMULTIPLAYER_QUICK_ANY - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYMULTIPLAYER_SHOW_FRIENDS - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYSERVERSEARCH_SEARCHING - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYSERVERSEARCH_SERVER_NOT_FOUND - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYSERVERFOUND_COUNTDOWN - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDIARY_DISABLED_BY_SERVER - global stringtable not found
 7:35:51 Cannot register string STR_ULTRA_AI - global stringtable not found
 7:35:51 Cannot register string STR_AUTO_AIM - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SOFT_BRAKE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_BRAKE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_HAND_BRAKE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_ACCELERATE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_GEAR_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_GEAR_DWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD1 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD2 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD3 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD4 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD5 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD6 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD7 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_FWD8 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_RVS1 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SHIFT_RVS2 - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_GEARBOX_MODE - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_GEARBOX_MODE_OFF - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_GEARBOX_MODE_BASIC - global stringtable not found
 7:35:51 Cannot register string STR_CONFIG_GEARBOX_MODE_REAL - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_AIM_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_AIM_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_AIM_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_AIM_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_NUM_MAGAZINES - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_PUT_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_DROP_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_PUT_MAGAZINE - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_DROP_MAGAZINE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_OPEN - global stringtable not found
 7:35:51 Cannot register string STR_MPROLE_START - global stringtable not found
 7:35:51 Cannot register string STR_MP_SESSION_LOST - global stringtable not found
 7:35:51 Cannot register string STR_MP_NO_MESSAGE - global stringtable not found
 7:35:51 Cannot register string STR_MP_TRANSFER_FILE - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_DATE - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_DATE_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_SCORE - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_DURATION - global stringtable not found
 7:35:51 Cannot register string STR_DURATION_LONG - global stringtable not found
 7:35:51 Cannot register string STR_DURATION_SHORT - global stringtable not found
 7:35:51 Cannot register string STR_CAMPAIGN_CASUALTIES - global stringtable not found
 7:35:51 Cannot register string STR_TERRAIN_3_125 - global stringtable not found
 7:35:51 Cannot register string STR_TERRAIN_6_25 - global stringtable not found
 7:35:51 Cannot register string STR_TERRAIN_12_5 - global stringtable not found
 7:35:51 Cannot register string STR_TERRAIN_25 - global stringtable not found
 7:35:51 Cannot register string STR_TERRAIN_50 - global stringtable not found
 7:35:51 Cannot register string STR_FXAA - global stringtable not found
 7:35:51 Cannot register string STR_SHARP - global stringtable not found
 7:35:51 Cannot register string STR_SMAA - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_GRASS - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_TREEOA - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_TREEOA_GRASS - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_TREEA2 - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_TREEA2_GRASS - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_TREEOA_TREEA2 - global stringtable not found
 7:35:51 Cannot register string STR_ATOC_TREEOA_TREEA2_GRASS - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_UNITS_METRIC - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_UNITS_MIXED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_UNITS_IMPERIAL - global stringtable not found
 7:35:51 Cannot register string STR_CUST_NEW_DIR - global stringtable not found
 7:35:51 Cannot register string STR_BAD_OBJECT_ID - global stringtable not found
 7:35:51 Cannot register string STR_OR - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_SHOW - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_HIDE - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_PLAN - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_NOTES - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_GEAR - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_MAP_BRIEFING_TEAM_SWITCH - global stringtable not found
 7:35:51 Cannot register string STR_BRIEFING_LINK_SECTION - global stringtable not found
 7:35:51 Cannot register string STR_BRIEFING_LINK_MARKER - global stringtable not found
 7:35:51 Cannot register string STR_VK_SYMBOLS - global stringtable not found
 7:35:51 Cannot register string STR_VK_ACCENTS - global stringtable not found
 7:35:51 Cannot register string STR_VK_ALPHABET - global stringtable not found
 7:35:51 Cannot register string STR_VK_SHIFT - global stringtable not found
 7:35:51 Cannot register string STR_VK_SHIFT_SELECTED - global stringtable not found
 7:35:51 Cannot register string STR_VK_CAPSLOCK - global stringtable not found
 7:35:51 Cannot register string STR_VK_CAPSLOCK_SELECTED - global stringtable not found
 7:35:51 Cannot register string STR_VK_HINT_SYMBOLS - global stringtable not found
 7:35:51 Cannot register string STR_VK_HINT_ACCENTS - global stringtable not found
 7:35:51 Cannot register string STR_VK_HINT_ALPHABET - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_SELECT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_NEW_PROFILE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_OBJECTIVES - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_OBJECTIVES_HIDE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_PROFILE_SELECT_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_PROFILE_SELECT_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MAIN_XBOX_MULTI_OPTIMATCH - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_BACK - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_DISCONNECT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_START - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_READY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_ASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_UNASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_ASSIGNING - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_UNASSIGNING - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_IGUI_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_IGUI_MORE_ACTIONS - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_IGUI_NEXT_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_DIR_OPEN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MISSION_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MISSION_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MISSION_RESUME_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CAMPAIGN_BEGIN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CAMPAIGN_RESUME - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CAMPAIGN_REPLAY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CAMPAIGN_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_GAME_TYPE_ANY - global stringtable not found
 7:35:51 Cannot register string STR_NUM_PLAYERS_ANY - global stringtable not found
 7:35:51 Cannot register string STR_LANGUAGE_ANY - global stringtable not found
 7:35:51 Cannot register string STR_DIFFICULTY_ANY - global stringtable not found
 7:35:51 Cannot register string STR_LANGUAGE_ENGLISH - global stringtable not found
 7:35:51 Cannot register string STR_LANGUAGE_FRENCH - global stringtable not found
 7:35:51 Cannot register string STR_LANGUAGE_ITALIAN - global stringtable not found
 7:35:51 Cannot register string STR_LANGUAGE_GERMAN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_XONLINE_NEW_ACCOUNT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_JOIN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_HOST - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MP_HOST_NAME - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_SIGN_IN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_OFFLINE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_ONLINE_PLAYING - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_ONLINE_NOT_IN_GAME - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_INVITE_RECEIVED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_INVITE_SENT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_REQUEST_RECEIVED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_REQUEST_SENT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_VOICE_ON - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_VOICE_MUTED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_FRIENDS_VOICE_TV - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MP_INTERRUPT_OFFLINE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MP_INTERRUPT_OFFLINE_HINT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MP_INTERRUPT_ONLINE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MP_INTERRUPT_ONLINE_HINT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_SINGLE_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_SINGLE_USER_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_USER_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_SINGLE_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_SINGLE_NEW_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MISSION_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_NEW_PLAYER_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MESSAGE_MISSION_ALREADY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MESSAGE_MISSION_CLEAR - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_CYCLIC_LEFT_NEW - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_CYCLIC_RIGHT_NEW - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_RUDDER_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_RUDDER_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_FAST_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_THRUST_ANALOGUE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_BRAKE_ANALOGUE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_BRAKE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_CYCLIC_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_CYCLIC_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_CYCLIC_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_CYCLIC_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_COLLECTIVE_RAISE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_COLLECTIVE_LOWER - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_COLLECTIVE_RAISE_CONT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_COLLECTIVE_LOWER_CONT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_ENGINES_TOGGLE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_WHEELS_BRAKE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_TRIM_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_TRIM_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_TRIM_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_TRIM_BACKWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_TRIM_RUDDER_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_TRIM_RUDDER_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_ROPE_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_SLING_LOAD_MANAGER - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_CYCLIC_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_CYCLIC_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_CYCLIC_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SUBMARINE_CYCLIC_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SEAGULL_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SEAGULL_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SEAGULL_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SEAGULL_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SEAGULL_FAST_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_LINEAR_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_LINEAR_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_WHEEL_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_WHEEL_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_FAST_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAR_SLOW_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_VEH_LOCK_TARGETS - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_SWAP_GUNNER - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_HELI_MANUAL_FIRE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_TURN_IN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_TURN_OUT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CANCEL_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_WATCH - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_TEAM_SWITCH - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_TEAM_SWITCH_PREV - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_TEAM_SWITCH_NEXT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_GEAR - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_INTERFACE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_DELETE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_DESTROY - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_MOVE_CAM - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_LOCK_CAM - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_LEVEL_OBJ - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_ROTATE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_GROUP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_MULTIPLE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_CONTENT_WAYP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_MOVE_Y - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_GET_OUT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_COLLAPSE_PARENT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_NIGHT_VISION - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_PERSON_VIEW - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_PING_VIEW - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_TOGGLE_INTERFACE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_TOGGLE_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_TOGGLE_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_MAP_TEXTURES - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_COMPASS - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CURATOR_WATCH - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_BACKWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_MOVE_TURBO - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_LOOK_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_LOOK_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_LOOK_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_EDITOR_CAMERA_LOOK_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_BACKWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_TURBO1 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_MOVE_TURBO2 - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_ZOOM_IN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_ZOOM_OUT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_LOOK_UP - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_LOOK_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_LOOK_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_LOOK_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_RESET - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_TARGET - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_VISION_MODE - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_FLASHLIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CAMERA_INTERFACE - global stringtable not found
 7:35:51 Cannot register string STR_A3_CURATOR_ENTITIES_MARKERS - global stringtable not found
 7:35:51 Cannot register string STR_A3_CURATOR_ENTITIES_ALLMARKERS - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_HOVER - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_HOVER_CANCEL - global stringtable not found
 7:35:51 Cannot register string STR_VECTORING_ON - global stringtable not found
 7:35:51 Cannot register string STR_VECTORING_OFF - global stringtable not found
 7:35:51 Cannot register string STR_LAST_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_CATCH - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_DROP - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_CREATE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_DELETE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_ADD_WP - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_DELETE_WP - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_WIZARD_MAP_HINT_EDIT_WP - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_CONNECT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_UPDATE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_BUSY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_SIGNED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_IMPORTANT_MSG - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_NEW_MSG - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_NO_SESSION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_CONDITIONS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_OPENINGS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_DAMAGED - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_ERROR_NOT_CURRENT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_TROUBLESHOOTER - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_UPDATE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_TRY_AGAIN - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_READ_MSG - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_READ_MSG_NOW - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_READ_MSG_LATER - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_DECLINE_INVITATION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_UPDATE_ACCOUNT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_HINT_SIGN_OUT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CANCEL - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_WRONG_PASSCODE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_LOST_CONNECTION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_NOT_CONNECT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_INSERT_DISC - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_PLAYER_DISCONNECTED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_PLAYER_STOP - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_PLAYER_ACTIVE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FRIEND - global stringtable not found
 7:35:51 Cannot register string STR_FEEDBACK_DATE_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_GEAR_TAKE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_GEAR_DROP - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_GEAR_PUT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_PURCHASE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_INSTALL - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_SUBSCRIBE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CANCEL_SUBSCRIPTION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_NO_TAX - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_TAX - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_GST - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_VAT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FREE_CONTENT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_PREMIUM_CONTENT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_PRICE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_PERIOD - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FREE_MONTHS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_SUFFIX - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FREQUENCY_MONTHLY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FREQUENCY_QUARTERLY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FREQUENCY_BIANNUALLY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_LIVE_FREQUENCY_ANNUALLY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_PURCHASE_SUBSCRIBTION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_PURCHASE_CONTENT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_CANCEL_SUBSCRIBTION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_INSTALL_ABORT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PURCHASE_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SUBSCRIPTION_SUCCEEDED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CANCEL_SUBSCRIPTION_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CANCEL_SUBSCRIPTION_SUCCEEDED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_INSTALL_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_INSTALL_SUCCEEDED - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_PURCHASING_CONTENT - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_CANCELLING_SUBSCTIPTION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_BILLING_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_DECLINE_INVITATION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_REVOKE_INVITATION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_BLOCK_REQUEST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_DECLINE_REQUEST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_CANCEL_REQUEST - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_KICK_OFF - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_TERMINATE_SESSION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_NEGATIVE_FEEDBACK - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_RETURN_LOBBY - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_RETURN_LOBBY_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_DISCONNECT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_DISCONNECT_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_A3_ABORT_CONFIRMATION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_MSG_ROLES_LOST - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_MSG_HOST_SESSION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_MSG_NO_BOARD_STATS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_ENABLE_ALL - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_DISABLE_ALL - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_DELETE_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_DELETE_PROFILE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_DELETE_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MAIN_XBOX_MULTI_FRIENDS - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MAIN_XBOX_MULTI_DOWNLOAD - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MAIN_XBOX_MULTI_DOWNLOAD_NEW_OFFER - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_TESTING_NETWORK_CONDITIONS - global stringtable not found
 7:35:51 Cannot register string STR_YAXIS_NORMAL - global stringtable not found
 7:35:51 Cannot register string STR_YAXIS_REVERTED - global stringtable not found
 7:35:51 Cannot register string STR_FOREFDB_DISABLED - global stringtable not found
 7:35:51 Cannot register string STR_FOREFDB_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_MENU_UNITS - global stringtable not found
 7:35:51 Cannot register string STR_MENU_UNITS_ALL - global stringtable not found
 7:35:51 Cannot register string STR_TEAM_MAIN - global stringtable not found
 7:35:51 Cannot register string STR_TEAM_RED - global stringtable not found
 7:35:51 Cannot register string STR_TEAM_GREEN - global stringtable not found
 7:35:51 Cannot register string STR_TEAM_BLUE - global stringtable not found
 7:35:51 Cannot register string STR_TEAM_YELLOW - global stringtable not found
 7:35:51 Cannot register string STR_MY_VEHICLE - global stringtable not found
 7:35:51 Cannot register string STR_FORMATION - global stringtable not found
 7:35:51 Cannot register string STR_REPLY - global stringtable not found
 7:35:51 Cannot register string STR_STATUS - global stringtable not found
 7:35:51 Cannot register string STR_RADIO - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_MP_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_MSG_CABLE - global stringtable not found
 7:35:51 Cannot register string STR_NAME_FORMAT_SETTINGS - global stringtable not found
 7:35:51 Cannot register string STR_NAME_FORMAT_SAVE_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_NAME_FORMAT_SAVE_CAMPAIGN - global stringtable not found
 7:35:51 Cannot register string STR_NAME_FORMAT_SAVE_USER_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_NAME_FORMAT_USER_MISSION_SP - global stringtable not found
 7:35:51 Cannot register string STR_NAME_FORMAT_USER_MISSION_MP - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_LITE_UNITINFO - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_ROUGHLANDING - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_WINDENABLED - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_AUTOTRIMENABLED - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_STRESSDAMAGEENABLED - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_LIMITED_DISTANCE - global stringtable not found
 7:35:51 Cannot register string STR_DIFF_FADE_OUT - global stringtable not found
 7:35:51 Cannot register string STR_CA_SHOW - global stringtable not found
 7:35:51 Cannot register string STR_CA_HIDE - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_HIDE_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_CANCEL_ACTION - global stringtable not found
 7:35:51 Cannot register string STR_GETOUT_IM - global stringtable not found
 7:35:51 Cannot register string STR_SIGN_IN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SYSTEM_LINK_CABLE - global stringtable not found
 7:35:51 Cannot register string STR_LOCKED_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_SHOW_FRIEND - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_SHOW_PLAYERS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_DISABLE_ALL_AI - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_ENABLE_ALL_AI - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_ALL_ASSIGNED - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_ASSIGN_ALL - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_MSG_STATS_NOT_UPLOADED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_CONTINUE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_UPLOAD_NOW - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_TERMINATE_SESSION_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_CONFIRM_ACCEPT_INVITATION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SIGN_OUT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PENDING_INVITATION - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_LEFT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_RIGHT - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_FORWARD - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_BACK - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_FAST - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_COMMAND_SLOW - global stringtable not found
 7:35:51 Cannot register string STR_USRACT_CHANGE_GUNNER_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_WIZARD_MY_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_INTEL_DATE_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_INTEL_TIME_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_SAVE_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_SAVE_OVERWRITE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_NEW_STORAGE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_IGNORE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_REMOVE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_DELETE_SAVE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_LOAD - global stringtable not found
 7:35:51 Cannot register string STR_MSG_DISK_FULL_T - global stringtable not found
 7:35:51 Cannot register string STR_MSG_DISK_FULL_U - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_FREE_BLOCKS - global stringtable not found
 7:35:51 Cannot register string STR_MP_KICKED_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_MP_BANNED_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_MP_TIMEOUT_CLIENT - global stringtable not found
 7:35:51 Cannot register string STR_MP_CDKEY_IN_USE - global stringtable not found
 7:35:51 Cannot register string STR_MP_BAD_CDKEY - global stringtable not found
 7:35:51 Cannot register string STR_MP_SESSION_LOCKED - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYHOSTSETTINGS_PORT_WARNING - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYHOSTSETTINGS_PORT_INVALID - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_COMMUNICATOR - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_SPEAKERS - global stringtable not found
 7:35:51 Cannot register string STR_BRIEF_SCORE_MP - global stringtable not found
 7:35:51 Cannot register string STR_LOAD_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_RETRY_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MAIN_XBOX_SETTINGS - global stringtable not found
 7:35:51 Cannot register string STR_SETTINGS_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_LOAD - global stringtable not found
 7:35:51 Cannot register string STR_SAVE_AND_ABORT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_SAVE_AND_EXIT - global stringtable not found
 7:35:51 Cannot register string STR_SILENT_SIGN_IN_NONE - global stringtable not found
 7:35:51 Cannot register string STR_SILENT_SIGN_IN_OK - global stringtable not found
 7:35:51 Cannot register string STR_SILENT_SIGN_IN_PASSCODE - global stringtable not found
 7:35:51 Cannot register string STR_SILENT_SIGN_IN_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_CORRUPTED_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_CORRUPTED_IDENTITY - global stringtable not found
 7:35:51 Cannot register string STR_CORRUPTED_SAVE - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLLER_REMOVED - global stringtable not found
 7:35:51 Cannot register string STR_ACTIVE_CONTROLLER_REMOVED - global stringtable not found
 7:35:51 Cannot register string STR_LOCKED_CONTROLLER_REMOVED - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_GAME_INVITE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_FRIEND_REQUEST - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_RECORD - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_PLAY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOICE_STOP - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MAIN_LIVE - global stringtable not found
 7:35:51 Cannot register string STR_DAMAGED_DISC - global stringtable not found
 7:35:51 Cannot register string STR_SIDE_UNKNOWN - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_COLLAPSE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_EXPAND - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_WIZARD_LIMIT - global stringtable not found
 7:35:51 Cannot register string STR_MISSION_WIZARD_POINTS - global stringtable not found
 7:35:51 Cannot register string STR_HOST_SESSION - global stringtable not found
 7:35:51 Cannot register string STR_CLIENT_IS_HOST - global stringtable not found
 7:35:51 Cannot register string STR_RESPAWN_MESSAGE - global stringtable not found
 7:35:51 Cannot register string STR_RESPAWN_VEHICLE_MESSAGE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_WRONG_MISSION_NAME - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_RESTART_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_ABORT_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_QUESTION_SAVE_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_REVERT_QUESTION - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_ABORT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_YES - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_NO - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MESSAGE_SAVING_DONT_TURN_OFF - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MESSAGE_SAVING_USER_DONT_TURN_OFF - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MESSAGE_SAVING_NOT_SPACE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_FREE_SLOTS - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_MISSION_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_HINT_MISSION_RETRY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_HINT_REFRESH - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MESSAGE_REFRESH - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVER_CREATED - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVER_CREATE_FAIL - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVER_FINISHED - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVER_IDENTITY_CREATED - global stringtable not found
 7:35:51 Cannot register string STR_DS_PLAYER_CONNECTING - global stringtable not found
 7:35:51 Cannot register string STR_DS_PLAYER_CONNECTED - global stringtable not found
 7:35:51 Cannot register string STR_DS_PLAYER_DISCONNECTED - global stringtable not found
 7:35:51 Cannot register string STR_DS_ADMIN_LOGGED_IN - global stringtable not found
 7:35:51 Cannot register string STR_DS_ADMIN_LOGGED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTED_ADMIN_LOGGED_IN - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTED_ADMIN_LOGGED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_DS_NO_USERS - global stringtable not found
 7:35:51 Cannot register string STR_DS_MISSION_READ_FROM_BANK - global stringtable not found
 7:35:51 Cannot register string STR_DS_MISSION_READ_FROM_DIR - global stringtable not found
 7:35:51 Cannot register string STR_DS_ROLES_ASSIGNED - global stringtable not found
 7:35:51 Cannot register string STR_DS_READING_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_DS_MISSION_READ - global stringtable not found
 7:35:51 Cannot register string STR_DS_GAME_STARTED - global stringtable not found
 7:35:51 Cannot register string STR_DS_GAME_RESTARTED - global stringtable not found
 7:35:51 Cannot register string STR_DS_GAME_FINISHED - global stringtable not found
 7:35:51 Cannot register string STR_DS_WAITING_FOR_NEXT_GAME - global stringtable not found
 7:35:51 Cannot register string STR_DS_LOAD_MISSION_ERROR - global stringtable not found
 7:35:51 Cannot register string STR_DS_PLAYER_KICKED_BIG_CUSTOM_FILE - global stringtable not found
 7:35:51 Cannot register string STR_DS_PLAYER_KICKED_INVALID_CUSTOM_FILE - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTES_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTES_MISSIONS - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTES_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTES_REASSIGN - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTES_KICK - global stringtable not found
 7:35:51 Cannot register string STR_DS_VOTES_ADMIN - global stringtable not found
 7:35:51 Cannot register string STR_DS_NWK_COMMAND_NOT_AVAILABLE - global stringtable not found
 7:35:51 Cannot register string STR_DS_LOGIN_TRY_AGAIN_LATER - global stringtable not found
 7:35:51 Cannot register string STR_DS_ADMIN_WRONG_PASSWORD - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVERCOMMAND_PASSWORD_CLIENT_OK - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVERCOMMAND_PASSWORD_CLIENT_WRONG - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVERCOMMAND_PASSWORD_SERVER_OK - global stringtable not found
 7:35:51 Cannot register string STR_DS_SERVERCOMMAND_PASSWORD_SERVER_WRONG - global stringtable not found
 7:35:51 Cannot register string STR_CLIENT_IS_DS_ADMIN - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_MP_CONNECTED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_SRVSETUP_PLAYERS - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_MP_PLAYER_COUNT - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYDSINTERFACE_FORCED_DIFFICULTY - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOTED_TOP_DIFF_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_XBOX_VOTED_TIMEOUT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MP_TIMEOUT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_MP_PL_NOT_PROVIDED - global stringtable not found
 7:35:51 Cannot register string STR_DISP_XBOX_EDITOR_WIZARD_NONAME_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_HASH_WRONG - global stringtable not found
 7:35:51 Cannot register string STR_SIGNATURE_MISSING - global stringtable not found
 7:35:51 Cannot register string STR_SIGNATURE_WRONG - global stringtable not found
 7:35:51 Cannot register string STR_SIGNATURE_CHECK_TIMED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_A3_DATA_VERIFICATION_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_DROP - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_TAKE - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_REARM - global stringtable not found
 7:35:51 Cannot register string STR_WEAPON_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_UNIFORM_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_VEST_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_BACKPACK_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_GROUND_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_CRATE_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_SOLDIER_CONTAINER_NAME - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_WEAPONS - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_MAGAZINES - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_ITEMS - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_ALL - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_WEAPONS_POOL - global stringtable not found
 7:35:51 Cannot register string STR_LIB_LABEL_DESCRIPTION - global stringtable not found
 7:35:51 Cannot register string STR_LIB_LABEL_STATISTICS - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_NO_TEXT - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_NA - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_FUEL_CAP - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_MAX_SPEED - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_TRANS_SOLD - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_AMPHIBIOUS - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_RETRACT_GEAR - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_MAGAZINE - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_MUZZLE_VEL - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_AMMO_COUNT - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_YES - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_NO - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_UNIT_LITER - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_UNIT_KILOMETERS_PER_HOUR - global stringtable not found
 7:35:51 Cannot register string STR_LIB_INFO_UNIT_METERS_PER_SECOND - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PATCH_AVAILABLE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MANDATORY_PATCH_AVAILABLE - global stringtable not found
 7:35:51 Cannot register string STR_GEAR_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_NORMAL - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_WIDE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_WIDE_16_10 - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_TFT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_21_9 - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_TRIPLE - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_16_3 - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_24_5 - global stringtable not found
 7:35:51 Cannot register string STR_DISP_OPT_ASPECT_RATIO_CUSTOM - global stringtable not found
 7:35:51 Cannot register string STR_MSG_RESTART_NEEDED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_RESTART_EDITOR - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SIGNED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_AGREE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_DISAGREE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LICENCE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_AGREE_BATTLEYE_LICENCE - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_INIT_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_NO_LICENCE - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_ENABLE_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_REQUEST_RESTART - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_SERVICE_NOT_RUNNING - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_SERVICE_OUTDATED - global stringtable not found
 7:35:51 Cannot register string STR_BATTLEYE_UNKNOWN_REASON - global stringtable not found
 7:35:51 Cannot register string STR_SAVE_MISSION_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_SAVE_CAMPAIGN_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_SAVE_USER_SETTINGS_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_FILE_ERROR_SIGNED_OUT - global stringtable not found
 7:35:51 Cannot register string STR_FILE_ERROR_NO_DEVICE - global stringtable not found
 7:35:51 Cannot register string STR_FILE_ERROR_CORRUPTED - global stringtable not found
 7:35:51 Cannot register string STR_FILE_ERROR_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_FILE_ERROR_DISK_FULL - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLLER_SENSITIVITY_LOW - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLLER_SENSITIVITY_MEDIUM - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLLER_SENSITIVITY_HIGH - global stringtable not found
 7:35:51 Cannot register string STR_MAP_NOTES - global stringtable not found
 7:35:51 Cannot register string STR_MAP_PLAN - global stringtable not found
 7:35:51 Cannot register string STR_A3_MAP_EXPLOSIVE - global stringtable not found
 7:35:51 Cannot register string STR_UI_EDITOR_INT_EDIT2D - global stringtable not found
 7:35:51 Cannot register string STR_UI_EDITOR_INT_EDIT3D - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NUMBER_EXPECTED - global stringtable not found
 7:35:51 Cannot register string STR_LOG_CURRENT_TASK - global stringtable not found
 7:35:51 Cannot register string STR_LOG_GEAR - global stringtable not found
 7:35:51 Cannot register string STR_LOG_TEAM_SWITCH - global stringtable not found
 7:35:51 Cannot register string STR_LOG_KICKOFF - global stringtable not found
 7:35:51 Cannot register string STR_LOG_VOTEKICK - global stringtable not found
 7:35:51 Cannot register string STR_LOG_VOTEADMIN - global stringtable not found
 7:35:51 Cannot register string STR_LOG_BAN - global stringtable not found
 7:35:51 Cannot register string STR_LOG_MUTE - global stringtable not found
 7:35:51 Cannot register string STR_LOG_CANCEL_MUTE - global stringtable not found
 7:35:51 Cannot register string STR_LOG_EDIT - global stringtable not found
 7:35:51 Cannot register string STR_LOG_DELETE - global stringtable not found
 7:35:51 Cannot register string STR_LOG_TITLE_OBJECTIVE - global stringtable not found
 7:35:51 Cannot register string STR_LOGSUBJECT_CONVERSATION - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_PRESETS - global stringtable not found
 7:35:51 Cannot register string STR_CONTROLS_CUSTOM - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_LOAD_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_RETRY_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_DISP_INT_RESTART_FORMAT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_PLAY_WITHOUT_SAVES - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_NOT_SIGNED_IN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_MP_NO_PRIVILEGES - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NOT_SIGNED_IN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LIVE_NOT_SIGNED_IN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NO_STORAGE_DEVICE - global stringtable not found
 7:35:51 Cannot register string STR_MSG_NO_STORAGE_DEVICE_SHORT - global stringtable not found
 7:35:51 Cannot register string STR_MSG_STORAGE_CHANGED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_STORAGE_REMOVED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SAVE_FAILED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LIVE_DISCONNECTED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_LIVE_STATS_WARN - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ME_LOAD - global stringtable not found
 7:35:51 Cannot register string STR_DISP_ME_RETRY - global stringtable not found
 7:35:51 Cannot register string STR_DISP_REVERT - global stringtable not found
 7:35:51 Cannot register string STR_UI_POSITION_DISTANCE - global stringtable not found
 7:35:51 Cannot register string STR_UI_OBJECT_DISTANCE - global stringtable not found
 7:35:51 Cannot register string STR_UI_POSITION_DISTANCE_FEET - global stringtable not found
 7:35:51 Cannot register string STR_UI_POSITION_DISTANCE_MILES - global stringtable not found
 7:35:51 Cannot register string STR_UI_POSITION_DISTANCE_NAUTICAL_MILES - global stringtable not found
 7:35:51 Cannot register string STR_UI_POSITION_DISTANCE_KILOMETERS - global stringtable not found
 7:35:51 Cannot register string STR_TRACK_IR - global stringtable not found
 7:35:51 Cannot register string STR_FREETRACK - global stringtable not found
 7:35:51 Cannot register string STR_ENABLE_CONTROLLER - global stringtable not found
 7:35:51 Cannot register string STR_DISABLE_CONTROLLER - global stringtable not found
 7:35:51 Cannot register string STR_CUSTOMIZE_CONTROLLER_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_JOYSTICK_SCHEMES_TITLE - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_X - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_Y - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_AXIS_Z - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_X - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_Y - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_ROT_Z - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_SLIDER_1 - global stringtable not found
 7:35:51 Cannot register string STR_INPUT_DEVICE_STICK_SLIDER_2 - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_SURRENDER - global stringtable not found
 7:35:51 Cannot register string STR_ACTION_GET_OVER - global stringtable not found
 7:35:51 Cannot register string STR_ADDON_ACTIONS_INSTALL_CORE - global stringtable not found
 7:35:51 Cannot register string STR_ADDON_ACTIONS_INSTALL_MOD - global stringtable not found
 7:35:51 Cannot register string STR_ADDON_ACTIONS_PLAY_MISSION - global stringtable not found
 7:35:51 Cannot register string STR_ADDON_ACTIONS_TRY_ENTITY - global stringtable not found
 7:35:51 Cannot register string STR_ADDON_ACTIONS_TRY_WEAPON - global stringtable not found
 7:35:51 Cannot register string STR_MSG_ADDON_NOT_FOUND - global stringtable not found
 7:35:51 Cannot register string STR_MSG_ADDON_CANNOT_OPEN - global stringtable not found
 7:35:51 Cannot register string STR_MSG_ADDON_UNKNOWN_PRODUCT - global stringtable not found
 7:35:51 Cannot register string STR_INCOMPATIBLE_LOAD_GAME_ATTEMPT - global stringtable not found
 7:35:51 Cannot register string STR_FREELOOK_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_FREELOOK_ACTIONS_ENABLED - global stringtable not found
 7:35:51 Cannot register string STR_A3_GAME_VERSION - global stringtable not found
 7:35:51 Cannot register string STR_MSG_FONT_REPLACED - global stringtable not found
 7:35:51 Cannot register string STR_MSG_SAVING_PROFILE_DATA_ERROR - global stringtable not found
 7:35:51 Cannot register string STR_UI_UNIT - global stringtable not found
 7:35:51 Cannot register string STR_UI_UNIT_CIVIL - global stringtable not found
 7:35:51 Cannot register string STR_UI_HEADING - global stringtable not found
 7:35:51 Cannot register string STR_UI_ZOOM - global stringtable not found
 7:35:51 Cannot register string STR_UI_AMMO - global stringtable not found
 7:35:51 Cannot register string STR_UI_AMMO_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_UI_CM_AMMO - global stringtable not found
 7:35:51 Cannot register string STR_UI_CM_AMMO_EMPTY - global stringtable not found
 7:35:51 Cannot register string STR_UI_VEHICLE_PITCH - global stringtable not found
 7:35:51 Cannot register string STR_WI_ZEROING - global stringtable not found
 7:35:51 Cannot register string STR_WI_ZEROING_AUTO - global stringtable not found
 7:35:51 Cannot register string STR_WI_DISTANCE - global stringtable not found
 7:35:51 Cannot register string STR_WI_DISTANCE_NA - global stringtable not found
 7:35:51 Cannot register string STR_WI_FLIR - global stringtable not found
 7:35:51 Cannot register string STR_WI_NVS - global stringtable not found
 7:35:51 Cannot register string STR_WI_DTV - global stringtable not found
 7:35:51 Cannot register string STR_WI_TI - global stringtable not found
 7:35:51 Cannot register string STR_WI_NV - global stringtable not found
 7:35:51 Cannot register string STR_WI_VIS - global stringtable not found
 7:35:51 Cannot register string STR_WI_FLIR_MODE - global stringtable not found
 7:35:51 Cannot register string STR_WI_HEADING - global stringtable not found
 7:35:51 Cannot register string STR_WI_FOV_MODE - global stringtable not found
 7:35:51 Cannot register string STR_WI_ZOOM_NONE - global stringtable not found
 7:35:51 Cannot register string STR_WI_CAMERA_PITCH - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_DISTANCE_NA - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_DISTANCE - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_TIME_NA - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_TIME - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_ELEV_NEEDED_NA - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_ELEV_NEEDED - global stringtable not found
 7:35:51 Cannot register string STR_WI_ARTI_ELEV - global stringtable not found
 7:35:51 Cannot register string STR_WI_WEAPON_ELEV - global stringtable not found
 7:35:51 Cannot register string STR_WI_AC_RANGE - global stringtable not found
 7:35:51 Cannot register string STR_WI_AC_RANGE_NA - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_TYPE - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_COMBAT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_FLY_HEIGHT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_CANCEL - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_FLY_COPY_GROUND - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_FLY_LOW_PROFILE - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_FLY_TRAVEL_ALT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_FLY_HIGH_ALT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_WP_FLY_VERY_HIGH_ALT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_FOLLOW_UNIT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_DESTROY_UNIT - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_UNKNOWN_POS - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_AIRPLANE - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_LOITER_RANGE - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_FOLLOW_RANGE - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_UAV_DIST_M - global stringtable not found
 7:35:51 Cannot register string STR_AVT_CTM_UAV_DIST_KM - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYAVTERMINAL_DAMAGED - global stringtable not found
 7:35:51 Cannot register string STR_A3_RSCDISPLAYAVTERMINAL_CRITICAL - global stringtable not found
 7:35:51 Cannot register string STR_IGUI_AVT_PREMIUM_TEXT - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_READY - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_TO_HOOK - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_PAUSED - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_GOING_DOWN - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_HOOKED - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_ABORTED - global stringtable not found
 7:35:51 Cannot register string STR_SLING_LOAD_MANAGER_DESTROYED - global stringtable not found
 7:35:51 Cannot register string STR_FORMAT_AUTHOR - global stringtable not found
 7:35:51 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.groupNameFormat'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Initializing stats manager.
 7:35:54 Stats config disabled.
 7:35:54 sessionID: 35b4139ed1e882b730c039f14a8b123539a82938
 7:35:54 Warning Message: No entry '.tooltipDelay'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.initWorld'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.scriptsPath'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgVoiceTypes'.
 7:35:54 Warning Message: No entry '.CfgVoiceMask'.
 7:35:54 Warning Message: No entry '.UserActionsConflictGroups'.
 7:35:54 Warning Message: No entry '.UserActionGroups'.
 7:35:54 Warning Message: No entry '.CfgAILevelPresets'.
 7:35:54 Warning Message: No entry '.CfgDifficultyPresets'.
 7:35:54 Warning Message: No entry '.myArmorCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.groupArmorCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.fadeDistanceStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.fadeDistanceSpan'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.recoilCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.visionAidCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.divingLimitMultiplier'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.animSpeedCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cancelThreshold'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showCadetHints'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showCadetWP'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.defaultPreset'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgAISkill'.
 7:35:54 Warning Message: No entry '.AimingSpeed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.AimingAccuracy'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.AimingShake'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Endurance'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.SpotDistance'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.SpotTime'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Courage'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.ReloadSpeed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Commanding'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.General'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.CfgVideoOptions'.
 7:35:54 Warning Message: No entry '.Visibility'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ObjectsVisibility'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ShadowsVisibility'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HDR'.
 7:35:54 Warning Message: No entry '.PPAA'.
 7:35:54 Warning Message: No entry '.Particles'.
 7:35:54 Warning Message: No entry '.DynamicLights'.
 7:35:54 Warning Message: No entry '.AnisotropicFiltering'.
 7:35:54 Warning Message: No entry '.PiP'.
 7:35:54 Warning Message: No entry '.TextureQuality'.
 7:35:54 Warning Message: No entry '.ObjectsQuality'.
 7:35:54 Warning Message: No entry '.TerrainQuality'.
 7:35:54 Warning Message: No entry '.CloudQuality'.
 7:35:54 Warning Message: No entry '.WaterSSReflectionsQuality'.
 7:35:54 Warning Message: No entry '.ShadowQuality'.
 7:35:54 Warning Message: No entry '.ATOCQuality'.
 7:35:54 Warning Message: No entry '.PPSSAOQuality'.
 7:35:54 Warning Message: No entry '.PPCausticsQuality'.
 7:35:54 Warning Message: No entry '.PPBloom'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPDOF'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPRotBlur'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPRadialBlur'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPSharpen'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPColorPresets'.
 7:35:54 Warning Message: No entry '.PPBrightness'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPContrast'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PPSaturation'.
 7:35:54 Warning Message: No entry '.minValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DefaultSettings'.
 7:35:54 Warning Message: No entry '.OverallSettings'.
 7:35:54 Warning Message: No entry '.Benchmark'.
 7:35:54 Warning Message: No entry '.gpuDefaultResult'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gpuResultLimits'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.cpuDefaultResult'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cpuResultLimits'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.CfgDefaultSettings'.
 7:35:54 Warning Message: No entry '.UserInfo'.
 7:35:54 Initializing Steam Manager
 7:35:54 unable to load subscribed content list. list will be updated from steam
 7:35:54 unable to load published content list. list will be updated from steam
 7:35:54 unable to load cached items meta info. save and update functionality will be broken
 7:35:54 Steam Manager initialized.
 7:35:54
 7:35:54 ==== Loaded addons ====
 7:35:54
 7:35:54
 7:35:54 =======================
 7:35:54
 7:35:54 Warning Message: No entry '.CfgExperience'.
 7:35:54 Warning Message: No entry '.ranks'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.destroyUnit'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.destroyEnemy'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.destroyFriendly'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.destroyCivilian'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.destroyStatic'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.renegadeLimit'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.playerKilled'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.commandCompleted'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.commandFailed'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.followMe'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.destroyYourUnit'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.missionCompleted'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.missionFailed'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.MPTable'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCaptionBg'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorTitleBg'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBg'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBgAlt'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSelected'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorWest'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorEast'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCiv'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorRes'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.captionSpace'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 ============================================================================================= List of mods ===============================================================================================
 7:35:54 modsReadOnly = true
 7:35:54 safeModsActivated = false
 7:35:54 customMods = true
 7:35:54 hash = 'DA39A3EE5E6B4B0D3255BFEF95601890AFD80709'
 7:35:54 hashShort = 'ab9cfd5c'
 7:35:54                                               name |               modDir |    default |               origin |                                     hash | hashShort | fullPath
 7:35:54 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 7:35:54                                                    |                      |      false |             GAME DIR |                                          |           | c:\Server\Webmin\\
 7:35:54                                             @marma |               @marma |      false |            NOT FOUND |                                          |           |
 7:35:54                                       @Ryanzombies |         @Ryanzombies |      false |            NOT FOUND |                                          |           |
 7:35:54                                 @Extended_Base_Mod |   @Extended_Base_Mod |      false |            NOT FOUND |                                          |           |
 7:35:54                                       @ExileServer |         @ExileServer |      false |            NOT FOUND |                                          |           |
 7:35:54                                             @Exile |               @Exile |      false |            NOT FOUND |                                          |           |
 7:35:54                                       @CUP_Weapons |         @CUP_Weapons |      false |            NOT FOUND |                                          |           |
 7:35:54                                      @CUP_Vehicles |        @CUP_Vehicles |      false |            NOT FOUND |                                          |           |
 7:35:54                                         @CUP_Units |           @CUP_Units |      false |            NOT FOUND |                                          |           |
 7:35:54                                            @CBA_A3 |              @CBA_A3 |      false |            NOT FOUND |                                          |           |
 7:35:54                           @AdvancedUrbanRappelling | @AdvancedUrbanRappelling |      false |            NOT FOUND |                                          |           |
 7:35:54                                    @AdvancedTowing |      @AdvancedTowing |      false |            NOT FOUND |                                          |           |
 7:35:54                                                 A3 |                   A3 |       true |            NOT FOUND |                                          |           |
 7:35:54 ==========================================================================================================================================================================================================
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DebugFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.CfgFontFamilies'.
 7:35:54 String id -1 is not registered
 7:35:54 Warning Message:
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 InitSound ...
 7:35:54 InitSound - complete
 7:35:54 String id -1 is not registered
 7:35:54 Warning Message: No entry '.CfgDefaultSettings'.
 7:35:54 Warning Message: No entry '.defaultVisibility'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgDefaultSettings'.
 7:35:54 Warning Message: No entry '.defaultTerrainGrid'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgDefaultSettings'.
 7:35:54 Warning Message: No entry '.defaultObjectViewDistance'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgDefaultSettings'.
 7:35:54 Warning Message: No entry '.hazeDefaultDistance'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.GlobalChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgVoice'.
 7:35:54 No speaker configuration found.
 7:35:54 PhysX3 SDK Init started ...
 7:35:54 PhysX3 SDK Init ended.
 7:35:54 Warning Message: No entry '.PhysXMaterials'.
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.DefaultWorld'.
 7:35:54 Warning Message: No entry '.skyTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.DefaultWorld'.
 7:35:54 Warning Message: No entry '.skyTextureR'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgLensFlare'.
 7:35:54 Warning Message: No entry '.flarePos'.
 7:35:54 Warning Message: No entry '.flareSizeCam'.
 7:35:54 Warning Message: No entry '.flareBright'.
 7:35:54 Warning Message: No entry '.flareSizeEye'.
 7:35:54 Warning Message: No entry '.flareSizeEyeSun'.
 7:35:54 Warning Message: No entry '.CfgCoreData'.
 7:35:54 Warning Message: No entry '.textureDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureHalf'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureBlack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureZero'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureLine'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureLine3D'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureTrack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureTrackFour'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.imageCornerElement'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWrapperUI'.
 7:35:54 Warning Message: No entry '.Background'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TitleBar'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GroupBox2'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.Cursor'.
 7:35:54 Warning Message: No entry '.lock_target'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.select_target'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.known_target'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gunner_lock'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.aim'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.weapon'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.freelook'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tactical'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.move'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.attack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.getin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconBoardOut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.selectOver'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.watch'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconComplex'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.unitUnconscious'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconRepairVehicle'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconTakeBackpack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconAssemble'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconDisassemble'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.outArrow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.Compass'.
 7:35:54 Warning Message: No entry '.texture0'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.texture90'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.texture180'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.texture270'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.eastSign'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.westSign'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.guerrilaSign'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.eastFlag'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.westFlag'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.guerrilaFlag'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maskTextureFlare'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.eyeFlare'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.eyeFlareSun'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PreloadTextures'.
 7:35:54 Warning Message: No entry '.PreloadConfig'.
 7:35:54 Warning Message: No entry '.RscChatListDefault'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.rows'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGlobalChannel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGlobalChannelPlayerBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGlobalChannelPlayerText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSideChannel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSideChannelPlayerBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSideChannelPlayerText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCommandChannel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCommandChannelPlayerBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCommandChannelPlayerText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGroupChannel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGroupChannelPlayerBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGroupChannelPlayerText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorVehicleChannel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorVehicleChannelPlayerBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorVehicleChannelPlayerText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDirectChannel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDirectChannelPlayerBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDirectChannelPlayerText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorMessage'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorMessageProtocol'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadowPlayer'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadowColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 String id -1 is not registered
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DragAndDropFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDisabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.hideCursor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWrapperUI'.
 7:35:54 Warning Message: No entry '.Cursors'.
 7:35:54 Warning Message: No entry '.Arrow'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Resource RscDisplayStart not found
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.DefaultWorld'.
 7:35:54 Warning Message: No entry '.Weather'.
 7:35:54 Warning Message: No entry '.RainConfig'.
 7:35:54 Warning Message: No entry '.minCloudiness'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.averageCloudLimit'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minRainDensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxRainDensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.rainFading'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.squareLength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RainbowConfig'.
 7:35:54 Warning Message: No entry '.distance'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.intensityCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxCloudiness'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LightningsConfig'.
 7:35:54 Warning Message: No entry '.minCloudiness'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.scatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WindConfig'.
 7:35:54 Warning Message: No entry '.windChange'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minForce'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxForce'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minForceScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxForceScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minGustCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxGustCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gustTimeScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minGustScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxGustScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gustInfluenceMin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gustInfluenceMax'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.speedOfWindChange'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minGustValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxGustValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Overcast'.
 7:35:54 Warning Message: No entry '.Lighting'.
 7:35:54 No weather defined in .Overcast
 7:35:54 No lighting defined in .Lighting
 7:35:54 Warning Message: No entry '.rainEnabled'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ThunderboltNorm'.
 7:35:54 Warning Message: No entry '.model'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.soundFar'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.soundNear'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.ThunderboltHeavy'.
 7:35:54 Warning Message: No entry '.model'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.soundFar'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.soundNear'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureDayMax'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureDayMin'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureNightMax'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureNightMin'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.overcastTemperatureFactor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.blackSurfaceTemperatureDelta'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.whiteSurfaceTemperatureDelta'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.DefaultWorld'.
 7:35:54 Warning Message: No entry '.Weather'.
 7:35:54 Warning Message: No entry '.RainConfig'.
 7:35:54 Warning Message: No entry '.minCloudiness'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.averageCloudLimit'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minRainDensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxRainDensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.rainFading'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.squareLength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RainbowConfig'.
 7:35:54 Warning Message: No entry '.distance'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.intensityCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxCloudiness'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LightningsConfig'.
 7:35:54 Warning Message: No entry '.minCloudiness'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxProbability'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.scatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WindConfig'.
 7:35:54 Warning Message: No entry '.windChange'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minForce'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxForce'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minForceScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxForceScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minGustCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxGustCount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gustTimeScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minGustScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxGustScatter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gustInfluenceMin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.gustInfluenceMax'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.speedOfWindChange'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minGustValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxGustValue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Overcast'.
 7:35:54 Warning Message: No entry '.Lighting'.
 7:35:54 No weather defined in .Overcast
 7:35:54 No lighting defined in .Lighting
 7:35:54 Warning Message: No entry '.rainEnabled'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ThunderboltNorm'.
 7:35:54 Warning Message: No entry '.model'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.soundFar'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.soundNear'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.ThunderboltHeavy'.
 7:35:54 Warning Message: No entry '.model'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.soundFar'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.soundNear'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureDayMax'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureDayMin'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureNightMax'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.temperatureNightMin'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning: expected 12 values in the array , but only 0 present
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.overcastTemperatureFactor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.blackSurfaceTemperatureDelta'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.whiteSurfaceTemperatureDelta'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hazeDistCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hazeFogCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.aroundSunCoefMultiplier'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.aroundSunCoefExponent'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hazeBaseHeight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hazeBaseBeta0'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hazeDensityDecay'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonParallaxCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonFogColorationStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.skyFogColorationStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.skyColorInfluencesFogColor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonSunColorationScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonSunColorationIntensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.mapDrawingBrightnessModifier'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.midDetailTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.seaTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Rain'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.seaMaterial'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreMaterial'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreFoamMaterial'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreWetMaterial'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.terrainMaterial'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Underwater'.
 7:35:54 Warning Message: No entry '.noWaterFog'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.fullWaterFog'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.deepWaterFog'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waterFogDistance'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waterFogDistanceNear'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waterColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.deepWaterColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.surfaceColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.deepSurfaceColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.SeaWaterShaderPars'.
 7:35:54 Warning Message: No entry '.refractionMoveCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.minWaterOpacity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waterOpacityDistCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.underwaterOpacity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waterOpacityFadeStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waterOpacityFadeLength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WaterExPars'.
 7:35:54 Warning Message: No entry '.fogDensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.fogColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.fogColorLightInfluence'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.fogColorExtinctionSpeed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.fogGradientCoefs'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.ligtExtinctionSpeed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.diffuseLigtExtinctionSpeed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.ssReflectionStrength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ssReflectionMaxJitter'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ssReflectionRippleInfluence'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ssReflectionEdgeFadingCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ssReflectionDistFadingCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.specularMaxIntensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.specularPowerOvercast0'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.specularPowerOvercast1'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.specularNormalModifyCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.refractionMinCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.refractionMaxCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.refractionMaxDist'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.surfaceOpacity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadowIntensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamAroundObjectsIntensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamAroundObjectsFadeCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamColorCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamDeformationCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamTextureCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamTimeMoveSpeed'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.foamTimeMoveAmount'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreDarkeningMaxCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreDarkeningOffset'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreDarkeningGradient'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreWaveTimeScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shorewaveShifDerivativeOffset'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreFoamIntensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreMaxWaveHeight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shoreWetLayerReflectionIntensity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.seaBedUnderwaterDepth'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.clouds'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.clouds'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.clouds'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.clouds'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.clutterGrid'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.clutterDist'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noDetailDist'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.fullDetailDist'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.satelliteNormalBlendStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.satelliteNormalBlendEnd'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.satelliteNormalOnDetail'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.terrainBlendMaxBrightenCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.terrainBlendMaxDarkenCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.interpolateClutterColoring'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.clutterColoringFarCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.clutterColoringFarStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.clutterColoringFarSpeed'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.clutterRoadwayCheckRadiusCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.soundMapSizeCoef'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HDRNewPars'.
 7:35:54 Warning Message: No entry '.minAperture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxAperture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.apertureRatioMax'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.apertureRatioMin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloomImageScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloomScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloomExponent'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloomLuminanceOffset'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloomLuminanceScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloomLuminanceExponent'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapMethod'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapShoulderStrength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapLinearStrength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapLinearAngle'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapToeStrength'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapToeNumerator'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapToeDenominator'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapLinearWhite'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapExposureBias'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.tonemapLinearWhiteReinhard'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgApertureStandard'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgApertureMin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgApertureMax'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgStandardAvgLum'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgLightGain'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgTransition'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgTransitionCoefOn'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nvgTransitionCoefOff'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nightShiftMinAperture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nightShiftMaxAperture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nightShiftMaxEffect'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nightShiftLuminanceScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.eyeAdaptFactorLight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.eyeAdaptFactorDark'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.enableTracks'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.enableFootsteps'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.enableBloodSplashes'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Clutter'.
 7:35:54 Warning Message: No entry '.Rain'.
 7:35:54 Warning Message: No entry '.raindrop'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.skyObject'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.underwaterOcclusionObject'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.starsObject'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.pointObject'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.horizontObject'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.haloObject'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.CfgSurfaces'.
 7:35:54 Warning Message: No entry '.Water'.
 7:35:54 Warning Message: No entry '.files'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.rough'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.lucidity'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dust'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.soundEnviron'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.impact'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgVehicles'.
 7:35:54 Warning Message: No entry '.CfgAmmo'.
 7:35:54 Warning Message: No entry '.CfgNonAIVehicles'.
 7:35:54 Warning Message: No entry '.PreloadVehicles'.
 7:35:54 Warning Message: No entry '.CfgMarkedTargets'.
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.SideChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.CommandChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cfgFormations'.
 7:35:54 Warning Message: No entry '.East'.
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.SideChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.CommandChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cfgFormations'.
 7:35:54 Warning Message: No entry '.West'.
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.SideChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.CommandChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cfgFormations'.
 7:35:54 Warning Message: No entry '.Guer'.
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.SideChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.CommandChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cfgFormations'.
 7:35:54 Warning Message: No entry '.Civ'.
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.SideChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RadioChannels'.
 7:35:54 Warning Message: No entry '.CommandChannel'.
 7:35:54 Warning Message: No entry '.level'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.noise'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.micOuts'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterWord'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterNumber'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseInUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.pauseAfterUnitList'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cfgFormations'.
 7:35:54 Warning Message: No entry '.West'.
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.DefaultWorld'.
 7:35:54 Warning Message: No entry '.skyTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWorlds'.
 7:35:54 Warning Message: No entry '.DefaultWorld'.
 7:35:54 Warning Message: No entry '.skyTextureR'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgCoreData'.
 7:35:54 Warning Message: No entry '.craterShell'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.craterBullet'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.slopBlood'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.footStepBleeding0'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.footStepBleeding1'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.cloudletBasic'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.cloudletFire'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.cloudletFireD'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.cloudletWater'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.cloudletMissile'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.textureTIConversion'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureTIConversionDX11'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cobraLight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.sphereLight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.halfLight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.marker'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.footStepL'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.footStepR'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.paperCarModel'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.halfSpaceModel'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.forceArrowModel'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: Cannot open object core\sphere\sphere.p3d
 7:35:54 Warning Message: Cannot open object a3\data_f\tetrahedron.p3d
 7:35:54 Warning Message: No entry '.rectangleModel'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.rayModel'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.gunLightModel'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: Cannot open object core\default\default.p3d
 7:35:54 Warning Message: No entry '.collisionShape'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.cfgCurator'.
 7:35:54 Warning Message: No entry '.EditingArea'.
 7:35:54 Warning Message: No entry '.3D'.
 7:35:54 Warning Message: No entry '.objectBorder'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgLensFlare'.
 7:35:54 Warning Message: No entry '.flarePos'.
 7:35:54 Warning Message: No entry '.flareSizeCam'.
 7:35:54 Warning Message: No entry '.flareBright'.
 7:35:54 Warning Message: No entry '.flareSizeEye'.
 7:35:54 Warning Message: No entry '.flareSizeEyeSun'.
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.Actions'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.right'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bottom'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.rows'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBackgroundSelected'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSelect'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.underlineSelected'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.background'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.arrowWidth'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.arrowHeight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconArrowUp'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconArrowDown'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DefaultAction'.
 7:35:54 Warning Message: No entry '.showHint'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showNext'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showLine'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.fontNext'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.sizeNext'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.offsetX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.offsetY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.relativeToCursor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.background'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscMainMenu'.
 7:35:54 Cannot read Items class in 'RscMainMenu'. Command menu shortcuts won't be available.
 7:35:54 Warning Message: No entry '.RscHCMainMenu'.
 7:35:54 Cannot read Items class in 'RscHCMainMenu'. Command menu shortcuts won't be available.
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DragAndDropFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDisabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.hideCursor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWrapperUI'.
 7:35:54 Warning Message: No entry '.Cursors'.
 7:35:54 Warning Message: No entry '.Arrow'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.RscHint'.
 7:35:54 Warning Message: No entry '.idd'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DragAndDropFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDisabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.hideCursor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWrapperUI'.
 7:35:54 Warning Message: No entry '.Cursors'.
 7:35:54 Warning Message: No entry '.Arrow'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.RscTaskHint'.
 7:35:54 Warning Message: No entry '.TaskIcon'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.RscTaskHint'.
 7:35:54 Warning Message: No entry '.TaskIcon'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.RscTaskHint'.
 7:35:54 Warning Message: No entry '.TaskIcon'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.RscTaskHint'.
 7:35:54 Warning Message: No entry '.TaskIcon'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.RscTaskHint'.
 7:35:54 Warning Message: No entry '.idd'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgRanks'.
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.unfocusMenuAlpha'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Bar'.
 7:35:54 Warning Message: No entry '.imageBar'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.Cursor'.
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.Picture'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorProblems'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Capture'.
 7:35:54 Warning Message: No entry '.colorBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Menu'.
 7:35:54 Warning Message: No entry '.align'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.widthMin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.widthMax'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorChecked'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDisabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSelected'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorSelectedText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.hideTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.quickMenuDelay'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TacticalDisplay'.
 7:35:54 Warning Message: No entry '.left'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.targetTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.targetAirTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.targetLaserTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.targetNVTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorFriendly'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorEnemy'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorNeutral'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCivilian'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorUnknown'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorCamera'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Cursor'.
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Radar'.
 7:35:54 Warning Message: No entry '.left'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarAirBackgroundTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarTankBackgroundTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarCompassOnlyBackgroundTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarAirDangerSector'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarIncommingMissile'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarVehicleTarget'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarTargetingEnemy'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarFOV'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarFOVCrew'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarFOVPlayer'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarLockDangerColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarIncommingDangerColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarWaypointColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarCustomWaypointColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarAssaultColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.radarWaypoint'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarCustomWaypoint'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarAssault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.radarOut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TankDirection'.
 7:35:54 Warning Message: No entry '.left'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorFullDammage'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorHalfDammage'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageTurret'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageGun'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageObsTurret'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageHull'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageEngine'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageLTrack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageRTrack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveStop'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveForward'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveFast'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveLeft'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveRight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageMoveAuto'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HelicopterHUD'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SizeExNormal'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SizeExSmall'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.windDirection'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.stabilityGrid'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.stabilityVector'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.indicator'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.axis'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonAxes'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonVector'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.horizonAircraft'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.attitudeElemmentsSize'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.attitudeFOV'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.statusOff'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.statusOn'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.statusDamaged'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.statusDestroyed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.statusEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.HUDLimitsColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.analogueSpeedAngleOffset'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.analogueAltitudeAngleOffset'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.analogueSpeedAngleRange'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.analogueAltitudeAngleRange'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.FLIRModeNames'.
 7:35:54 Warning Message: No entry '.FLIRModeName'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Compass'.
 7:35:54 Warning Message: No entry '.left'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBackground'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.dirColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.turretDirColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.PlayerInfo'.
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HealthBar'.
 7:35:54 Warning Message: No entry '.stallWarning'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CommandBar'.
 7:35:54 Warning Message: No entry '.left'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimm'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageDefaultWeapons'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageNoWeapons'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageCommander'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageDriver'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageGunner'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageCargo'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.imageDefaultWeapons'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.prevPage'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.nextPage'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.textureNormal'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.texturePlayer'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.textureSelected'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.textureFocus'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.textureMCareless'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.textureMSafe'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.textureMAware'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.textureMCombat'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.textureMStealth'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.colorCareless'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.colorSafe'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.colorAware'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.colorCombat'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.colorStealth'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitBehavior'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.colorNoAmmo'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.colorWounded'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.colorWoundedFade'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRank'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRank'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRank'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRank'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRank'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitStatus'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.colorFocus'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.colorSelected'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.colorNormal'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNameBackground'.
 7:35:54 Warning Message: No entry '.colorPlayer'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.GroupIcon'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.GroupIcon'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.GroupIcon'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.GroupIcon'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.GroupIcon'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandBackground'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitSpecialRole'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitSpecialRole'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitSpecialRole'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitSpecialRole'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitSpecialRole'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitSpecialRole'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberBackground'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.colorNoAmmo'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.colorDamaged'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleStatus'.
 7:35:54 Warning Message: No entry '.colorNoFuel'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRole'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRole'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRole'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRole'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRole'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitRole'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleRole'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleRole'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleRole'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleRole'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleRole'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleRole'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleIcon'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleIcon'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleIcon'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleIcon'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleIcon'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleIcon'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberBackground'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberText'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberText'.
 7:35:54 Warning Message: No entry '.SizeEx'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberText'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandText'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandText'.
 7:35:54 Warning Message: No entry '.SizeEx'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandText'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.SizeEx'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.colorText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberText'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitNumberText'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandText'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.CommandText'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.VehicleNumberText'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.SizeEx'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitName'.
 7:35:54 Warning Message: No entry '.colorText'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.UnitInfo'.
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.colorBlue'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGreen'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorWhite'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorYellow'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorRed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.textureBlue'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureGreen'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.textureWhite'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.textureYellow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnitCombatMode'.
 7:35:54 Warning Message: No entry '.textureRed'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Cursor'.
 7:35:54 Warning Message: No entry '.activeWidth'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.activeHeight'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.activeMinimum'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.activeMaximum'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.infoTextShadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.explosiveColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.me'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.select'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.selectDead'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.explosive'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.leader'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.mission'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.missionFade'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.customMark'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.formationMark'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waypointMark'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.assault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.assaultNoLOS'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.board'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.unitInjured'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.unitBleeding'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.unitHealer'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconBoardIn'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconBoardOut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconMove'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconJoin'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconRepairAt'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconRearmAt'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconRefuelAt'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconCursorSupport'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconHealAt'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconSupport'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.iconInFormation'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.boardColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.assaultColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.assaultNoLOSColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconMoveColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconJoinColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconHealAtColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconRepairAtColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconRearmAtColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconRefuelAtColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconSupportColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.iconInFormationColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.meColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.selectColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.leaderColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.missionColor1'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.missionColor2'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.customMarkColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.waypointColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.blinkingPeriod'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.freeLookActionColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.freeLookActionColorSelected'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.freeLookActionColorAvailable'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.dimmCmdStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmCmdEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmMeEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmMeStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmTactPingStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmTactPingEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgSimpleTasks'.
 7:35:54 Warning Message: No entry '.TaskOverview'.
 7:35:54 Warning Message: No entry '.dimmEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.throwCursorMinScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.throwCursorMaxScale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.throwCursorFadeSpeed'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Bar'.
 7:35:54 Warning Message: No entry '.colorGreen'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorYellow'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorRed'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBlinkOn'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBlinkOff'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.cfgGroupIcons'.
 7:35:54 Warning Message: No entry '.hc_selected'.
 7:35:54 Warning Message: No entry '.icon'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hc_selectable'.
 7:35:54 Warning Message: No entry '.icon'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hc_selected'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hc_selectable'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waypoint'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.waypoint'.
 7:35:54 Warning Message: No entry '.icon'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hc_selectable'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hc_selected'.
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxHCDistanceAlphaEnd'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.maxHCDistanceAlphaStart'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HC3DGroupAlpha'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CommandBar'.
 7:35:54 Warning Message: No entry '.colorWhiteTeam'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorRedTeam'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorGreenTeam'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorBlueTeam'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorYellowTeam'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.Hint'.
 7:35:54 Warning Message: No entry '.dimmStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.sound'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.TaskHint'.
 7:35:54 Warning Message: No entry '.dimmStartTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimmEndTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.dimShowTime'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ConnectionLost'.
 7:35:54 Warning Message: No entry '.left'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.top'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PeripheralVision'.
 7:35:54 Warning Message: No entry '.cueTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.cueColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.cueEnemyColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.cueFriendlyColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloodTexture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.bloodColor'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.RscInGameUI'.
 7:35:54 Warning Message: No entry '.colorReady'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorReadyWest'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorReadyEast'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorReadyIndependent'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorReadyCivilian'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorPrepare'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorUnload'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.CfgActions'.
 7:35:54 Warning Message: No entry '.None'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetInCommander'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetInDriver'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetInPilot'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetInGunner'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetInCargo'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetInTurret'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Heal'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Repair'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Refuel'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Rearm'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetOut'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LightOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LightOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.EngineOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.EngineOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SwitchWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HideWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SwitchMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UseWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LoadMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LoadOtherMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LoadEmptyMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MountWeaponFromInv'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnmountWeaponToInv'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MountItem'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnmountItem'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeItem'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DropItem'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ChangeUniformWithBody'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DropItemFromBody'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ChangeBackpackFromBackpack'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeItemFromBody'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeBackpackFromBody'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnmountUniformItem'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MountUniformItem'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeDropWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeDropMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeFlag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ReturnFlag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TurnIn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TurnOut'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WeaponInHand'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WeaponOnBack'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SitDown'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Land'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CancelLand'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Eject'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MoveToDriver'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MoveToPilot'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MoveToGunner'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MoveToCommander'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MoveToCargo'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MoveToTurret'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HideBody'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TouchOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TouchOffMines'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.StartTimer'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SetTimer'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Deactivate'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.NVGoggles'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.NVGogglesOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ManualFire'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ManualFireCancel'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.AutoHover'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.AutoHoverCancel'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.VTOLVectoring'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.VTOLVectoringCancel'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.StrokeFist'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.StrokeGun'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LadderUp'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LadderDown'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LadderOnDown'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LadderOnUp'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LadderOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.FireInflame'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.FirePutDown'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LandGear'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LandGearUp'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.FlapsDown'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.FlapsUp'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Salute'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ScudLaunch'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ScudStart'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ScudCancel'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.User'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DropWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DropMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UserType'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HandGunOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HandGunOnStand'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HandGunOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HandGunOffStand'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeMine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DeactivateMine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UseMagazine'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.IngameMenu'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CancelTakeFlag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CancelAction'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MarkEntity'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.MarkWeapon'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TeamSwitch'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Gear'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GearOpen'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HealSoldier'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HealSoldierAuto'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HealSoldierSelf'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PatchSoldier'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Surrender'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GetOver'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.FirstAid'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.OpenBag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeBag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DropBag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutBag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.AddBag'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Assemble'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DisAssemble'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.IRLaserOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.IRLaserOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GunLightOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.GunLightOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ArtilleryComputer'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RepairVehicle'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DragSoldier'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CarrySoldier'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CarrySoldierInterrupt'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DragSoldierInterrupt'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.DropCarried'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.OpenParachute'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.TakeVehicleControl'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SuspendVehicleControl'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LockVehicleControl'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnlockVehicleControl'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SearchLightOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SearchLightOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CollisionLightOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CollisionLightOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutInDriver'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutInPilot'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutInCargo'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutInGunner'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutInCommander'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PutInTurret'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadFromDriver'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadFromPilot'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadFromCargo'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadFromGunner'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadFromCommander'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadFromTurret'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PeriscopeDepthOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.PeriscopeDepthOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UAVTerminalOpen'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UAVTerminalMakeConnection'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UAVTerminalReleaseConnection'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.BackFromUAV'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SwitchToUAVDriver'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.SwitchToUAVGunner'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UAVTerminalHackConnection'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ActiveSensorsOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.ActiveSensorsOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HookCargo'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnhookCargo'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.LoadVehicle'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadVehicle'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.UnloadAllVehicles'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Talk'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.Tell'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HelicopterAutoTrimOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HelicopterAutoTrimOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HelicopterTrimOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.HelicopterTrimOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WheelsBrakeOn'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.WheelsBrakeOff'.
 7:35:54 Warning Message: No entry '.priority'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.show'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.showWindow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hideOnUse'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shortcut'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.text'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textDefault'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textSimple'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.CfgWeaponModeTextures'.
 7:35:54 Warning Message: No entry '.CfgCurator'.
 7:35:54 Warning Message: No entry '.DrawObject'.
 7:35:54 Warning Message: No entry '.3D'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureBackground'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureDisabled'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureDisabledBackground'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgCurator'.
 7:35:54 Warning Message: No entry '.DrawPlayer'.
 7:35:54 Warning Message: No entry '.3D'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgCurator'.
 7:35:54 Warning Message: No entry '.EditingArea'.
 7:35:54 Warning Message: No entry '.2D'.
 7:35:54 Warning Message: No entry '.textureBorder'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgCurator'.
 7:35:54 Warning Message: No entry '.DrawGroup'.
 7:35:54 Warning Message: No entry '.textureWest'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureEast'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureGuer'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureCivilian'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureUnknown'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscCompass'.
 7:35:54 Warning Message: No entry '.model'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Shape  not found
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.TooltipFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.z'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.direction'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.direction'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.direction'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.up'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.up'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.up'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.scale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.xBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.yBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.zBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.inBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.enableZoom'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.zoomDuration'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.selectionArrow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.RscWatch'.
 7:35:54 Warning Message: No entry '.model'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: Shape  not found
 7:35:54 Warning Message: Cannot open object
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.z'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.direction'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.direction'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.direction'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.up'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.up'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.up'.
 7:35:54 Warning Message: []: '/' not an array
 7:35:54 Cannot evaluate '' - no file
 7:35:54 Warning Message: No entry '.scale'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.xBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.yBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.zBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.inBack'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.enableZoom'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.zoomDuration'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.selectionDate1'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.selectionDate2'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.selectionDay'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgVehicles'.
 7:35:54 Warning Message: No entry '.CfgAmmo'.
 7:35:54 Warning Message: No entry '.CfgNonAIVehicles'.
 7:35:54 Warning Message: No entry '.RscPendingInvitation'.
 7:35:54 Warning Message: No entry '.x'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.y'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.w'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.h'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureConnectionQualityPoor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.textureConnectionQualityBad'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 String id -1 is not registered
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DragAndDropFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDisabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.hideCursor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWrapperUI'.
 7:35:54 Warning Message: No entry '.Cursors'.
 7:35:54 Warning Message: No entry '.Arrow'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Resource RscDisplayNotFreeze not found
 7:35:54 String id -1 is not registered
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.DragAndDropFont'.
 7:35:54 Warning Message: No entry '.font'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgFonts'.
 7:35:54 Warning Message: No entry '.size'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.colorEnabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.colorDisabled'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: No entry '.hideCursor'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.shadow'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.CfgWrapperUI'.
 7:35:54 Warning Message: No entry '.Cursors'.
 7:35:54 Warning Message: No entry '.Arrow'.
 7:35:54 Warning Message: No entry '.texture'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotX'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.hotspotY'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.width'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.height'.
 7:35:54 Warning Message: '/' is not a value
 7:35:54 Warning Message: No entry '.color'.
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Size: '/' not an array
 7:35:54 Warning Message: Resource RscDisplayNotFreeze not found
 7:35:54 Warning Message: No entry '.CfgVoiceMask'.
 7:35:54 Warning Message: No entry '.CfgInGameUI'.
 7:35:54 Warning Message: No entry '.Chat'.
 7:35:54 Warning Message: No entry '.sound'.
 7:35:54 Warning Message: Size: '/' not an array
 7:36:04 String id -1 is not registered
 7:36:04 Warning Message: No entry '.CfgInGameUI'.
 7:36:04 Warning Message: No entry '.DragAndDropFont'.
 7:36:04 Warning Message: No entry '.font'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.CfgFonts'.
 7:36:04 Warning Message: No entry '.size'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.colorEnabled'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.colorDisabled'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.hideCursor'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shadow'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.CfgWrapperUI'.
 7:36:04 Warning Message: No entry '.Cursors'.
 7:36:04 Warning Message: No entry '.Arrow'.
 7:36:04 Warning Message: No entry '.texture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hotspotX'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hotspotY'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.width'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.height'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.color'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Resource RscDisplayNotFreeze not found
 7:36:04 Warning Message: No entry '.CfgWorlds'.
 7:36:04 Warning Message: No entry '.DefaultWorld'.
 7:36:04 Warning Message: No entry '.Weather'.
 7:36:04 Warning Message: No entry '.RainConfig'.
 7:36:04 Warning Message: No entry '.minCloudiness'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.averageCloudLimit'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minProbability'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxProbability'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minRainDensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxRainDensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.rainFading'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.squareLength'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.RainbowConfig'.
 7:36:04 Warning Message: No entry '.distance'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.intensityCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxCloudiness'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.LightningsConfig'.
 7:36:04 Warning Message: No entry '.minCloudiness'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minProbability'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxProbability'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minCount'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxCount'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.scatter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.WindConfig'.
 7:36:04 Warning Message: No entry '.windChange'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minForce'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxForce'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minForceScatter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxForceScatter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minGustCount'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxGustCount'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.gustTimeScatter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minGustScatter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxGustScatter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.gustInfluenceMin'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.gustInfluenceMax'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.speedOfWindChange'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minGustValue'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxGustValue'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.Overcast'.
 7:36:04 Warning Message: No entry '.Lighting'.
 7:36:04 No weather defined in .Overcast
 7:36:04 No lighting defined in .Lighting
 7:36:04 Warning Message: No entry '.rainEnabled'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.ThunderboltNorm'.
 7:36:04 Warning Message: No entry '.model'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.soundFar'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.soundNear'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.ThunderboltHeavy'.
 7:36:04 Warning Message: No entry '.model'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.soundFar'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.soundNear'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.temperatureDayMax'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning: expected 12 values in the array , but only 0 present
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.temperatureDayMin'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning: expected 12 values in the array , but only 0 present
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.temperatureNightMax'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning: expected 12 values in the array , but only 0 present
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.temperatureNightMin'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning: expected 12 values in the array , but only 0 present
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.overcastTemperatureFactor'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.blackSurfaceTemperatureDelta'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.whiteSurfaceTemperatureDelta'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hazeDistCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hazeFogCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.aroundSunCoefMultiplier'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.aroundSunCoefExponent'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hazeBaseHeight'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hazeBaseBeta0'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.hazeDensityDecay'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.horizonParallaxCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.horizonFogColorationStart'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.skyFogColorationStart'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.skyColorInfluencesFogColor'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.horizonSunColorationScale'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.horizonSunColorationIntensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.mapDrawingBrightnessModifier'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.midDetailTexture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.seaTexture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.Rain'.
 7:36:04 Warning Message: No entry '.texture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.seaMaterial'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreMaterial'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreFoamMaterial'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreWetMaterial'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.terrainMaterial'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.Underwater'.
 7:36:04 Warning Message: No entry '.noWaterFog'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.fullWaterFog'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.deepWaterFog'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.waterFogDistance'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.waterFogDistanceNear'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.waterColor'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.deepWaterColor'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.surfaceColor'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.deepSurfaceColor'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.SeaWaterShaderPars'.
 7:36:04 Warning Message: No entry '.refractionMoveCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.minWaterOpacity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.waterOpacityDistCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.underwaterOpacity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.waterOpacityFadeStart'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.waterOpacityFadeLength'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.WaterExPars'.
 7:36:04 Warning Message: No entry '.fogDensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.fogColor'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.fogColorLightInfluence'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.fogColorExtinctionSpeed'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.fogGradientCoefs'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.ligtExtinctionSpeed'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.diffuseLigtExtinctionSpeed'.
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: Size: '/' not an array
 7:36:04 Warning Message: No entry '.ssReflectionStrength'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.ssReflectionMaxJitter'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.ssReflectionRippleInfluence'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.ssReflectionEdgeFadingCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.ssReflectionDistFadingCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.specularMaxIntensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.specularPowerOvercast0'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.specularPowerOvercast1'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.specularNormalModifyCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.refractionMinCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.refractionMaxCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.refractionMaxDist'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.surfaceOpacity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shadowIntensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamAroundObjectsIntensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamAroundObjectsFadeCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamColorCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamDeformationCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamTextureCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamTimeMoveSpeed'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.foamTimeMoveAmount'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreDarkeningMaxCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreDarkeningOffset'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreDarkeningGradient'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreWaveTimeScale'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shorewaveShifDerivativeOffset'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreFoamIntensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreMaxWaveHeight'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.shoreWetLayerReflectionIntensity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.seaBedUnderwaterDepth'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.clouds'.
 7:36:04 Warning Message: []: '/' not an array
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.clouds'.
 7:36:04 Warning Message: []: '/' not an array
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.clouds'.
 7:36:04 Warning Message: []: '/' not an array
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.clouds'.
 7:36:04 Warning Message: []: '/' not an array
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.clutterGrid'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.clutterDist'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.noDetailDist'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.fullDetailDist'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.satelliteNormalBlendStart'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.satelliteNormalBlendEnd'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.satelliteNormalOnDetail'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.terrainBlendMaxBrightenCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.terrainBlendMaxDarkenCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.interpolateClutterColoring'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.clutterColoringFarCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.clutterColoringFarStart'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.clutterColoringFarSpeed'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.clutterRoadwayCheckRadiusCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.soundMapSizeCoef'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.HDRNewPars'.
 7:36:04 Warning Message: No entry '.minAperture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.maxAperture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.apertureRatioMax'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.apertureRatioMin'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.bloomImageScale'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.bloomScale'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.bloomExponent'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.bloomLuminanceOffset'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.bloomLuminanceScale'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.bloomLuminanceExponent'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapMethod'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapShoulderStrength'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapLinearStrength'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapLinearAngle'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapToeStrength'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapToeNumerator'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapToeDenominator'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapLinearWhite'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapExposureBias'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.tonemapLinearWhiteReinhard'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgApertureStandard'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgApertureMin'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgApertureMax'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgStandardAvgLum'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgLightGain'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgTransition'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgTransitionCoefOn'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nvgTransitionCoefOff'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nightShiftMinAperture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nightShiftMaxAperture'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nightShiftMaxEffect'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.nightShiftLuminanceScale'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.eyeAdaptFactorLight'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.eyeAdaptFactorDark'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.enableTracks'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.enableFootsteps'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.enableBloodSplashes'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.Clutter'.
 7:36:04 Warning Message: No entry '.Rain'.
 7:36:04 Warning Message: No entry '.raindrop'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.skyObject'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.underwaterOcclusionObject'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.starsObject'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.pointObject'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.horizontObject'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.haloObject'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: Cannot open object
 7:36:04 Warning Message: No entry '.CfgSurfaces'.
 7:36:04 Warning Message: No entry '.Water'.
 7:36:04 Warning Message: No entry '.files'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.rough'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.lucidity'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.dust'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.soundEnviron'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 Warning Message: No entry '.impact'.
 7:36:04 Warning Message: '/' is not a value
 7:36:04 c:\w\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing!
 7:36:05 Extensions:

 

 

So why does the script look at 'c:\Server\Webmin\\' (there is my webinterface) for the game?

Share this post


Link to post
Share on other sites

Could you send your config.js and the contents of your C:\Server\Arma3 to me as a PM instead perhaps?

Share this post


Link to post
Share on other sites
2 hours ago, Dahlgren said:

 C:\Server\Arma3

 

There is my arma installation with mods.

 

You have a PM.

Share this post


Link to post
Share on other sites

Hey, just found this tool, seems very interesting but I got a question: do I need also an apache/IIS webserver to run or it run an internal webserver itself? Because when I start server without any errors I can't connect to port 3000 even with localhost and I've also disabled firewall to test.

8jiIJIg.png

Thanks

Share this post


Link to post
Share on other sites

You do not need to run any extra web servers if you don't want to, the application has an internal web server.

 

What does your config.js look like, is the port defined as 3000 there as well?

Share this post


Link to post
Share on other sites
9 minutes ago, Dahlgren said:

You do not need to run any extra web servers if you don't want to, the application has an internal web server.

 

What does your config.js look like, is the port defined as 3000 there as well?


Yes, port 3000, I've only definied windows as os type and server location, nothing else changed

Share this post


Link to post
Share on other sites
2 minutes ago, ramius86 said:


Yes, port 3000, I've only definied windows as os type and server location, nothing else changed

 

What is the host field defined as in the config? It's better to leave it as '0.0.0.0' or null otherwise it will limit which network interfaces that are allowed to access the web admin

Share this post


Link to post
Share on other sites
Just now, Dahlgren said:

 

What is the host field defined as in the config? It's better to leave it as '0.0.0.0' or null otherwise it will limit which network interfaces that are allowed to access the web admin

Here's the trick, I've changed that to the external ip, now works :-) Thanks, will test a bit

Share this post


Link to post
Share on other sites
On 05/12/2017 at 2:02 PM, tRiKy_ch said:

hi,

very good tool!

 

how could i look for mods on a different folder?

Currently only mods in the game folder is supported, support for other/more folders might be added later on

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×