Installer infantry-online-155
This script is for reference only and can't be directly used to install the game in the Lutris client. To install the game, download the full script.
files: - infantryinstaller: http://freeinfantry.com/download/win/latest/Install-Infantry-Online.exe - infantrybanner: http://freeinfantry.com/download/installer-images/linux-lutris-banner-184x69.jpg game: arch: win32 exe: $GAMEDIR/drive_c/Program Files/Infantry Online/InfantryLauncher.exe prefix: $GAMEDIR working_dir: $GAMEDIR/drive_c/Program Files/Infantry Online/ installer: - task: app: dotnet452 description: Step (1/2) - Installing .NET 4.5.2... name: winetricks prefix: $GAMEDIR - task: args: /ddraw=opengl /S description: Step (2/2) - Installing Infantry Online... executable: infantryinstaller name: wineexec prefix: $GAMEDIR - move: dst: $GAMEDIR/infantry-online.jpg src: infantrybanner - execute: command: mkdir -p ~/.local/share/lutris/banners description: Create the banners folder if needed - execute: command: cp $GAMEDIR/infantry-online.jpg ~/.local/share/lutris/banners/ description: Move the banner to the lutris banner folder wine: d3d_extras: 'false' dxvk: 'false' dxvk_nvapi: 'false' overrides: ddraw.dll: n,b vkd3d: 'false'
{ "files": [ { "infantryinstaller": "http://freeinfantry.com/download/win/latest/Install-Infantry-Online.exe" }, { "infantrybanner": "http://freeinfantry.com/download/installer-images/linux-lutris-banner-184x69.jpg" } ], "game": { "arch": "win32", "exe": "$GAMEDIR/drive_c/Program Files/Infantry Online/InfantryLauncher.exe", "prefix": "$GAMEDIR", "working_dir": "$GAMEDIR/drive_c/Program Files/Infantry Online/" }, "installer": [ { "task": { "app": "dotnet452", "description": "Step (1/2) - Installing .NET 4.5.2...", "name": "winetricks", "prefix": "$GAMEDIR" } }, { "task": { "args": "/ddraw=opengl /S", "description": "Step (2/2) - Installing Infantry Online...", "executable": "infantryinstaller", "name": "wineexec", "prefix": "$GAMEDIR" } }, { "move": { "dst": "$GAMEDIR/infantry-online.jpg", "src": "infantrybanner" } }, { "execute": { "command": "mkdir -p ~/.local/share/lutris/banners", "description": "Create the banners folder if needed" } }, { "execute": { "command": "cp $GAMEDIR/infantry-online.jpg ~/.local/share/lutris/banners/", "description": "Move the banner to the lutris banner folder" } } ], "wine": { "d3d_extras": "false", "dxvk": "false", "dxvk_nvapi": "false", "overrides": { "ddraw.dll": "n,b" }, "vkd3d": "false" } }