-
Notifications
You must be signed in to change notification settings - Fork 26
Home
R edited this page Feb 17, 2017
·
43 revisions
Put serversync.jar in base folder of minecraft (folder with mods & configs etc).
Client:
- Run/Double click serversync{ver}.jar (or create shortcut)
Server:
- The server mode can be started from the command line or batch scripts using "java -jar serversync.jar server"
If you are on windows you can adapt my lazy server start script:
@echo off
SETLOCAL
for %%f in (forge*.jar) do (SET forge=%%~nxf)
for %%f in (serversync*.jar) do (SET serversync=%%~nxf)
start "Minecraft Server" java -Xms2g -Xmx2g -jar %forge% nogui
start "ServerSync Server" java -jar %serversync% server
ENDLOCAL
Update mods on server ----»»[ run Serversync on clients ----»»[ launch Minecraft and connect
How to guides
- Quick start guide
- Server setup
- Redirecting files
- Using the command line
- Excluding files from sync or deletion
- Banning clients
Multiple profile management
Troubleshooting