LAC-Online Public Server

games
Report Issue

To make the Los Angeles Crimes public server. Los Angeles Crimes lets you play, create, and discover a variety of immersive worlds created by a global community!

Contributors:
README

Los Angeles Crimes

This egg makes it easy for you to create a public server in the game Los Angeles Crimes.

I made it because I was confused about how to create a server manually which requires using a vpn and so on... But here such a method is not needed. This egg uses a Linux Server that has been provided by the Game Developer.

Game Description

Los Angeles Crimes lets you play, create, and discover a variety of immersive worlds created by a global community!

Features:

  • Free roam, team death-match, zombie survival, car race & soccer
  • Third-person & first-person view
  • Active-ragdoll and realistic physics
  • LAN support
  • PS4 controller support (Bluetooth)

Website: https://lacrimesonline.com/

Minimum Requirement

1024MB Ram and 1024MB Disk is enough to run the server. Better to add ram & disk as this is a public server and dozens of people can join.

Server Port

The LAC server can only run on port 7777. So the server port in the pterodactyl panel that you will use must be 7777.

Port Default
Public Server 7777

To Do

  • Can change version.

Contributors

Docker Images (1)
Name Image
ghcr.io/ptero-eggs/yolks:debian ghcr.io/ptero-eggs/yolks:debian
Startup Command
./LAC_Linux_v{{VER}}.x86_64
Variables (1)

Version

The build version is available at https://dl.lacrimesonline.com/builds/. Just write a numeric version like 1.6, don't use any other characters than numbers and periods. If the entered version is incorrect/non-existent it will use version 1.6 (for now). After replacing it, then reinstall this server. [ THIS FEATURE IS STILL IN DEVELOPMENT ]

Environment:
VER
Default:
1.6.2
User Viewable:
User Editable:
Rules:
required|string|max:20
Installation Script
Container: ghcr.io/ptero-eggs/installers:debian
Entrypoint: bash
#!/bin/bash
cd /mnt/server

# delete the previous file (if it is in the file manager)
rm -f LAC_Linux_v${VER}.x86_64 && rm -rf LAC_Linux_v${VER}_Data

# Using another version still under development!
#echo "checking the given version file and download it... v${VER}."
#wget https://dl.lacrimesonline.com/builds/LAC_v${VER}/LAC_Linux_Server_v${VER}.zip -O LAC_Linux_Server_v${VER}.zip || echo "VERSION v${VER} IS NOT FOUND! Use v1.6 instead..." && exit 1

wget https://dl.lacrimesonline.com/builds/LAC_Linux_v${VER}.zip -O LAC_Linux_Server_v${VER}.zip
echo "successfully downloaded v${VER} files.!" &&

# Extracting & remove the zip file
unzip ./LAC_Linux_Server_v${VER}.zip
rm -f ./LAC_Linux_Server_v${VER}.zip

# Make the main file executable....
chmod +x LAC_Linux_v${VER}.x86_64

echo "INSTALATION COMPLETE!"