-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
executable file
·37 lines (22 loc) · 781 Bytes
/
README
File metadata and controls
executable file
·37 lines (22 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
To start use:
java -jar CraftProxyLite.jar <port to bind to> <default port> [<password>] [verbose]
If your server is on the same server as the proxy and uses port 25565, you could use
java -jar CraftProxyLite.jar 20000 25565 quiet reconnectfile connect.txt banned banned.txt log log.txt
Players would connect using yourhostname.com:20000
The banned list is one name per line
Setup
mkdir src
cd src
git clone git://github.com/Raphfrk/CraftProxyLite.git
cd ..
mkdir temp
cd temp
Create this file:
javac.exe -cp "<path to Bukkit>/bukkit-0.0.1-SNAPSHOT.jar" ../src/com/raphfrk/craftproxy/*.java -d out
cd out
jar cvfm ../CraftProxy.jar ../../src/manifest.txt *
cd ..
zip -r CraftProxy.jar . -i src/*.java
pushd ../src
zip -r ../temp/CraftProxy.jar . -i plugin.yml
popd