Simplifying Black Ops 3 server installation for both Steam Black Ops 3 and Custom Clients (like T7X or BOIII).
No copyrighted files are distributed using these scripts.
This repository merges configurations and scripts from these projects:
T7X
EZZBOIII
T7 Configuration files
BOIIIEasyServer
You can create servers on both Linux-based platforms and Windows.
There doesn't seem to be a way to run zombies server using the official BO3 Server Launcher. Currently zombies servers are only available using custom clients
- How to install on Windows
- How to install on Linux (Ubuntu, Debian, Arch)
- EZZBOIII Server Additional Steps
- Cool, but Zombies?
- Mods?
- Custom Maps?
- Notes
- Clone this repository wherever you want to install the server
- Double click on
server_files_downloader.bat - Wait for server files to download through steamcmd
- Wait for the custom clients executable to download (currently T7X or EZZBOIII)
- (For Custom Clients) You can now edit
CustomClient_Server.batandzone/server.cfg(orzone/server_cp.cfgorzone/server_zm.cfg) with your desired settings - (For Custom Clients) Launch your server using
CustomClient_Server.bat boiiiif you want to use EZBOIII orCustomClient_Server.bat t7xif you want to use T7X - (For official servers on vanilla BO3) Launch your server using
Launch_Server.bat - Done!
Official BO3 servers only aimed for Windows support, but Wine can help us run it on Linux too.
- Clone this repository wherever you want to install the server
- Make
server_files_downloader.shexecutable usingchmod +xand execute it with./server_files_downloader.sh ubuntu(note, I currently supportubuntu,debianandarch). Example, if you're on arch just type./server_files_downloader.sh arch - Follow the setup "wizard" and confirm a bunch of wine required steps. Wait for server files to download through steamcmd
- Wait for the custom clients executable to download (currently T7X or EZZBOIII)
- (For Custom Clients) Make
CustomClient_Server.shexecutable usingchmod +x. Edit yourCustomClient_Server.shandzone/server.cfg(orzone/server_cp.cfgorzone/server_zm.cfg) with your desired settings - (For Custom Clients) Launch your server using
CustomClient_Server.sh boiiiif you want to use EZBOIII orCustomClient_Server.sh t7xif you want to use T7X - (For official servers on vanilla BO3) Launch your server using
Launch_Server.sh - Done!
EZZBOIII requires some additional files in your %APPDATA%/Local folder to create a new server. Extract boiii-server-files.zip and move the extracted boiii folder:
- Windows: in your
%APPDATA%/Localfolder - Linux: open your wine prefix and copy the
boiiifolder inAppData/Localfolder present in it
The default server files only downloads MP-ready stuff. To serve a Zombies server you need to copy these fast files
from your BO3 game files and put them into zone:
zone/en_zm_patch.ff
zone/en_zm_common.ff
zone/en_zm_levelcommon.ff
zone/zm_patch.ff
zone/zm_common.fd
zone/zm_common.ff
zone/zm_levelcommon.ff
Let's say you want to create a Shadows of Evil server, you need to copy these fast files too.
zone/en_zm_zod.ff
zone/en_zm_zod_patch.ff
zone/zm_zod.ff
zone/zm_zod.fd
zone/zm_zod_patch.ff
There's a difference between Custom Maps and Mods, this section will explain how to load a mod downloaded from the Steam Workshop.
Let's say you subscribed to the The Kermit Mod, this will create a folder in your Steam folder in steamapps/workshop/content/311210/1638465081, create a new mods folder inside the root of your server folder (in UnrankedServer) and copy the folder named 1638465081 (this number changes depending on the mod) inside it. The resulting folders structure should look like this:
Now modify the set ModFolderName= in CustomClient_Server.bat into set ModFolderName=1638465081, that's it, you're done!
This section will explain how to load custom maps downloaded from the Steam Workshop.
Let's say you downloaded the Mob of the Dead custom map and want to host a server with it, create the usermaps folder inside the root of your server folder (in UnrankedServer) and create a folder within it called zm_prison (the map codename, easily guess the name from the map gamefiles), put all map files inside this folder.
Edit server_zm.cfg and add in map rotation zm_prison
set sv_maprotation "gametype zclassic map zm_prison"
That's it
- Unless you're playing LAN with friends, you need to port forward you router and open the ports used by your server in Windows Firewall.
- If you don't need any custom client, just delete
t7x.exeorboiii.exe. - Remember to change the port in
CustomClient_Server.batif you're launching the server in the same machine where you're playing Black Ops 3. - To save space, you can delete any unused fast files in
UnrankedServer/zone - (For Custom Clients) To customise your server maps rotation and gamemodes just edit the files in
UnrankedServer/zone,server_zm.cfgchanges zombies configuration,server.cfgchanges multiplayer configurations,server_cp.cfgchanges coop campaign configuration. These files can be executed even with the vanillaLaunch_Server.batorLaunch_Server.shbut you need to edit these first to execute the desired .cfg file.

