# Jagged Alliance 2 (Stracciatella) To create a stealth/night-ops character, choose the following answers in the I.M.P. personality check: 6233-2232-2113-2431 https://github.com/ja2-stracciatella/ja2-stracciatella Note: You can do both steps here in parallel. Data and config: ``` mkdir -p ~/Downloads/ja2gog/ # put download from gog.com here sudo apt install innoextract cd ~/Downloads/ja2gog/ installer=setup_jagged_alliance_2*.exe ls $installer innoextract $installer test -d app/Data mkdir -p ~/games/ja2data mv app/Data ~/games/ja2data/data mkdir -p ~/.ja2 echo "data_dir = $HOME/games/ja2data" > ~/.ja2/ja2.ini ``` ``` mkdir -p ~/games cd ~/games wget https://github.com/ja2-stracciatella/ja2-stracciatella/releases/download/v0.21.0/ja2-stracciatella_0.21.0-git+61938e1_x86-64.AppImage binary=ja2-stracciatella*AppImage ls $binary chmod +x $binary shortcut=~/.local/bin/ja2 cat < $shortcut #!/bin/bash set -exo pipefail cd ~/games/ exec ./$binary -res 1920x1080 -fullscreen EOF chmod +x $shortcut ``` Run: ``` ja2 ```