(solved) Unable to install World in Conflict: Complete Edition

Good to see you are making progress. I had to start with a virtual desktop and set the required resolution in the game. After that I could disable the virtual desktop in the Lutris game settings.

FYI: A local script should be something like this:

name: "World in Conflict: Complete Edition"
game_slug: "world-in-conflict-complete-edition"
version: "GOG w/ DXVK"
slug: "world-in-conflict-complete-ed-gog-w-dxvk"
runner: wine

script:
  files:
  - goginstaller: N/A:Please select the GOG.com Windows installer
  - innoextract: http://constexpr.org/innoextract/files/snapshots/innoextract-1.8-dev-2019-01-13/innoextract-1.8-dev-2019-01-13-linux.tar.xz
  game:
    arch: win32
    exe: $GAMEDIR/drive_c/GOG Games/World in Conflict/wic.exe
    prefix: $GAMEDIR
  installer:
  - extract:
      dst: $CACHE/tmp/innoextract
      file: innoextract
  - execute:
      args: --extract "$goginstaller" --gog --exclude-temp --output-dir $CACHE/tmp/wic/
      file: $CACHE/tmp/innoextract/innoextract
  - move:
      dst: $GAMEDIR/drive_c/GOG Games/World in Conflict/
      src: $CACHE/tmp/wic/game/
  - task:
      app: d3dx9
      arch: win32
      description: Installing d3dx9
      name: winetricks
      prefix: $GAMEDIR
  system:
    env:
      DXVK_HUD: 0
  wine:
    dxvk: true

Cheers!