- Game Party Server for Bomb Squad Game
- This is a Modded Version of BombSquad linux_x86_64_server, build 1.7.37 API v9
- You can find Vanilla Version (Basic Original) here
To set up a cloud server, click here. If you already have Ubuntu ready or prefer to run it locally on Ubuntu, you can skip to the next step.
- Copy the command below exactly as it is, paste it into the Ubuntu terminal, and execute it.
sudo add-apt-repository ppa:deadsnakes/ppa -y
sudo apt update && sudo apt upgrade -y
sudo apt install software-properties-common python3-pip python3.12-dev python3.12-venv python3-tinydb git -y
git clone https://github.com/HeyFang/bombsquad-modded-server-scripts.git
cd bombsquad-modded-server-scripts
chmod +x ballisticakit_server dist/ballisticakit_headless
- This should install all the necessary packages
- Open the config.toml file and configure it as you like. Make sure that you remove the
#
at the beginning of any line you want to uncomment, which makes changes effective. - Open admin.json and add PB-IDs of Admins, who can use in-game server commands
- Run the following command to start server:
tmux new -s 43210
./ballisticakit_server
- We named the running tmux as
43210
to connect with it later if needed - You can replace
43210
with any name of your choice. - If you forget the session name, run
tmux ls
to list all tmux sessions. - Use
Ctrl + b
thend
to exit session and keep it running in background
- If you are not inside Tmux Session
43210
, - Run
tmux ls
to view all running sessions and confirm43210
is active - Run the following command to connect back
tmux attach -t 43210
- If you are not inside Tmux Session
43210
, Reconnect as explained above - Use
Ctrl + c
to stop running server party(ballisticakit_server)
- Run the following cmd to terminate tmux session
43210
tmux kill-session -t 43210