Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

xdub

6
Posts
1
Topics
1
Followers
3
Following
A member registered Jan 07, 2021 · View creator page →

Recent community posts

(1 edit)

The problem with compatibility tools is that it consume performance. Which is a problem mainly with machines where the game should work, but the compatibility tool makes it unplayable. I would also like to see the game natively for linux.

Ubuntu 22.04:

error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory

-> The missing libcrypto.so.1.1 is part of libssl1.1 which is not available in 22.04.

Hi. Here's how to run the game on a Linux Mint, Ubuntu, or other Debian based distribution. In other distributions, this will only differ for the OpenJDK 8 installation command.

https://itch.io/t/1246794/unable-to-start-the-game

Hi, follow these steps:

1) install openjdk8

sudo apt update
sudo apt install openjdk-8-jdk

2) Open the game directory and delete the "TalesOfAndrogyny" file

3) open a text editor (gedit, xed), paste this code into it and save the file in the game directory as "TalesOfAndrogyny" (without extension)

#!/bin/bash
ARCH=$(arch)
JAVAAMD64=/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
JAVAI386=/usr/lib/jvm/java-8-openjdk-i386/jre/bin/java
if [ "$ARCH" = "x86_64" ]; then
    if test -f "$JAVAAMD64"; then
            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -jar ./TalesOfAndrogyny.jar
        else
            notify-send "Please install the openjdk-8-jdk package."
    fi
fi
if [ "$ARCH" = "i386" ]; then
    if test -f "$JAVAI386"; then
            /usr/lib/jvm/java-8-openjdk-i386/jre/bin/java -jar ./TalesOfAndrogyny.jar
        else
            notify-send "Please install the openjdk-8-jdk package."
    fi
fi

4) Find permissions in the file properties (TalesOfAndrogyny) and check "executable file"

(2 edits)

Please replace the executable file with this script for the next release for linux. It saves a lot of trouble.

#!/bin/bash
ARCH=$(arch)
JAVAAMD64=/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
JAVAI386=/usr/lib/jvm/java-8-openjdk-i386/jre/bin/java
if [ "$ARCH" = "x86_64" ]; then
    if test -f "$JAVAAMD64"; then
            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -jar ./TalesOfAndrogyny.jar
        else
            notify-send "Please install the openjdk-8-jdk package."
    fi
fi
if [ "$ARCH" = "i386" ]; then
    if test -f "$JAVAI386"; then
            /usr/lib/jvm/java-8-openjdk-i386/jre/bin/java -jar ./TalesOfAndrogyny.jar
        else
            notify-send "Please install the openjdk-8-jdk package."
    fi
fi

Why don't use itch.io client?