I gonna be honest here... I do not know what to do now... I installed some packages, that might have something to do with missing functions, but all I can see is still missing functions for AMXX 1.9 and AMXX 1.10.
Paradoxically 1.8 is working (i mean... it loads up without errors but I did not do any tests if it works well with mods/plugins...).
Main reason i want atleast 1.9, is plugin author of Zombie Plague Special no longer supports 1.8 so... Yeah, and i want to have latest version obviously...
I also disabled all plugins, so only AMXX loads up - it does not work...
So... Any idea how it to make it works?
I’am providing some additional info:
Using VPS with ARM64 architecture - Oracle Cloud Infrastructure
I’am using latest version of Pterodactyl panel with Wings
Docker images to emulate AMD64 and I386 - quintenqvd/pterodactyl_images:emulation
also tried box86 only from the same author.
Here is install script inside docker, to run the HLDS
install script
PHP Code:
#!/bin/bash # steamcmd Base Installation Script # # Server Files: /mnt/server ## just in case someone removed the defaults. if [ "${STEAM_USER}" == "" ]; then STEAM_USER=anonymous STEAM_PASS="" STEAM_AUTH="" fi
## download and install steamcmd cd /tmp mkdir -p /mnt/server/steamcmd curl -sSL -o steamcmd.tar.gz [url]https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz[/url] tar -xzvf steamcmd.tar.gz -C /mnt/server/steamcmd mkdir -p /mnt/server/steamapps # Fix steamcmd disk write error when this folder is missing cd /mnt/server/steamcmd
# SteamCMD fails otherwise for some reason, even running as root. # This is changed at the end of the install process anyways. chown -R root:root /mnt export HOME=/mnt/server
## install game using steamcmd ./steamcmd.sh +force_install_dir /mnt/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} +app_update ${SRCDS_APPID} ${EXTRA_FLAGS} +quit ## other flags may be needed depending on install. looking at you cs 1.6
## set up 32 bit libraries mkdir -p /mnt/server/.steam/sdk32 cp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so
## set up 64 bit libraries mkdir -p /mnt/server/.steam/sdk64 cp -v linux64/steamclient.so ../.steam/sdk64/steamclient.so