Before you proceed! make sure your Ubuntu server has ipv6 disabled, otherwise players cannot join through server list. ------------ Server Mod release notes -------------------- Mod2: in this mod cheaters can't spam vehicle or mess with the server options if you enable lock down, you can get Admin with secret code without admin role. Mod3: this mod disables noprefix chat abuse and replaces bad nick names with PlayerID so you don't confuse players with (Player) name Mod4: changes potential bad nick names from server so it's doesn't bug the ban-list. -------------- ServerConfig File ----------------- Place the config file here on your VPS: /root/.config/unity3d/MA/LAC/ServerConfig.txt ---------------- RUN SERVER ----------------- you need to install these: apt-get install screen unzip libc6-i386 lib32stdc++6 install for 32bit (optional): apt-get install libncurses5:i386 download the game on your vps: wget https://lacrimesonline.com/builds/LAC/LAC_Linux_v1.9.2.zip unzip the game: unzip LAC_Linux_v1.9.2.zip give it execute permission: chmod +x LAC_Linux_v1.9.2.x86_64 create a screen so you can close the terminal: screen -S test run the game in screen: ./LAC_Linux_v1.9.2.x86_64 detach from screen: Ctrl + A + D close the terminal. [Info] on new updates, killing the game can be done with: Ctrl + Z ----------------- ENJOY ----------------- later accessing terminal: screen -r test ----------------- BAN-LIST --------------------- users get banned for 60 days. server saves the ban list here: /root/.config/unity3d/MA/LAC/banned-users.txt close the game before editing. ---------------- CRONJOB ------------------ (Optional) (Restart app every night) edit crontab: crontab -e restart every 3 hours: 0 */3 * * * pkill LAC_Linux ; ./LAC_Linux_v1.9.2.x86_64 & save: Ctrl + O Enter ---------------- SYSTEMD ------------------ (Optional, This will keep the app running if crashed) create file for auto-run service: sudo nano /etc/systemd/system/game.service copy & paste into the file: ------------------------------------------- [Unit] Description=Game Server After=network.target [Service] ExecStart=/root/LAC_Linux_v1.9.2.x86_64 Restart=always RestartSec=5 WorkingDirectory=/root User=root RestartForceExitStatus=0 #Environment=GAME_VAR=value [Install] WantedBy=multi-user.target ------------------------------------------- reload & start: sudo systemctl daemon-reload sudo systemctl enable game.service sudo systemctl start game.service check status: sudo systemctl status game.service see live logs: sudo journalctl -u game.service -f