#Support mrunknown07

1 messages · Page 1 of 1 (latest)

sudden cliffBOT
#

<@&872407642302197760>

Welcome to your Support Thread

Please check if your using the latest Skytils version at #Releases then check #Faq to see if your issue is maybe there, support will come soon.

If you crash do the *crash command in Discord and follow the instructions.

spring blaze
tame pawnBOT
#

oh yeah following this release if u dont have one of the following architectures u cant use skytils
if this is a problem then say something

if ("Linux".equalsIgnoreCase(osName)) {
    if ("amd64".equalsIgnoreCase(archName)) {
        return "linux-x86_64";
    } else if ("aarch64".equalsIgnoreCase(archName)) {
        return "linux-aarch64";
    } else if ("arm".equalsIgnoreCase(archName)) {
        return "linux-armv7";
    } else if ("s390x".equalsIgnoreCase(archName)) {
        return "linux-s390x";
    } else if ("ppc64le".equalsIgnoreCase(archName)) {
        return "linux-ppc64le";
    } else if ("riscv64".equalsIgnoreCase(archName)) {
        return "linux-riscv64";
    }
} else if (osName.startsWith("Windows")) {
    if ("amd64".equalsIgnoreCase(archName)) {
        return "windows-x86_64";
    } else if ("aarch64".equalsIgnoreCase(archName)) {
        return "windows-aarch64";
    }
} else if (osName.startsWith("Mac")) {
    if ("x86_64".equalsIgnoreCase(archName)) {
        return "osx-x86_64";
    } else if ("aarch64".equalsIgnoreCase(archName)) {
        return "osx-aarch64";
    }
}