Page 1 of 1

[FX] Simple Server Starter

Posted: Wed Feb 25, 2026 7:47 pm
by greenie
Introduction
Hello, so with FXServer, you need to run it in cmd, so I made this little batch file which will start your server, it’s just simple batch but thought it would help people out.

How to use
The only thing you need to change with this is the directory of the file, that’s about it. Since my FXServer folder is located on my desktop, I do this:

C:/users/administrator/desktop/server
The script will do the rest

Download
Windows Version

@echo off
cls

TIMEOUT /T 1
cd C:/users/administrator/desktop/server
TIMEOUT /T 1
run.cmd +exec server.cfg
pause >nul
(Just create a text file, put this in it, and when you save, do “Save As”, and call it run.bat)

Linux Version (Thanks to @zombieguy)

#!/bin/bash
echo "launching server..."
cd /home/server/fx-server
bash run.sh +exec server.cfg