man, this needed some updates!
This commit is contained in:
parent
5ddbd1f9de
commit
821e3909e5
67
README
67
README
@ -10,6 +10,7 @@ Source: https://github.com/Morlok8k/MinecraftLandGenerator
|
||||
|
||||
Original Forum (Now Locked): http://www.minecraftforum.net/viewtopic.php?f=1012&t=76563&start=60#p1299186
|
||||
|
||||
-----------------------------------------------
|
||||
|
||||
This program lets you generate an area of land with your Minecraft Beta SMP server (and is prossibly future-proof for newer versions). You set up your java command line and minecraft server paths in the MinecraftLandGenerator.conf file, set up the server's server.properties file with the name of the world you wish to use, and then run this program.
|
||||
|
||||
@ -20,6 +21,8 @@ The program makes a backup of level.dat as level_backup.dat before editing, and
|
||||
This program is public domain, and the source code is included in the .jar file. (If accidently missing, like in 1.3.0 and 1.4.0, it is always available at Github.)
|
||||
The JNLP library is included (inside the .jar) as jnbt-1.1.jar. It is not public domain. Its license is included within its .jar file, as LICENSE.TXT.
|
||||
|
||||
|
||||
-----------------------------------------------
|
||||
Version History:
|
||||
|
||||
1.4.2
|
||||
@ -38,6 +41,8 @@ Version History:
|
||||
1.3.0
|
||||
- Fixed Problems with Minecraft Beta 1.3 -- Morlok8k
|
||||
|
||||
-----------------------------------------------
|
||||
Corrodias:
|
||||
1.2.0
|
||||
- land generation now centers on the spawn point instead of [0, 0]
|
||||
- the server is launched once before the spawn point is changed, to verify that it can run and to create a world if one doesn't exist
|
||||
@ -59,44 +64,46 @@ Version History:
|
||||
- initial release
|
||||
|
||||
|
||||
-----------------------------------------------
|
||||
Minecraft Land Generator version 1.4.2
|
||||
Uses a Minecraft server to generate square land of a specified size.
|
||||
|
||||
Minecraft Land Generator version 1.3.0
|
||||
Uses a Minecraft server to generate square land of a specified size.
|
||||
Usage: java -jar MinecraftLandGenerator.jar x y [serverpath] [switches]
|
||||
|
||||
Usage: java -jar MinecraftLandGenerator.jar x y [serverpath] [switches]
|
||||
Arguments:
|
||||
x : X range to generate
|
||||
y : Y range to generate
|
||||
serverpath : the path to the directory in which the server runs (takes precedence over the config file setting)
|
||||
|
||||
Arguments:
|
||||
x : X range to generate
|
||||
y : Y range to generate
|
||||
serverpath : the path to the directory in which the server runs (takes precedence over the config file setting)
|
||||
Switches:
|
||||
-verbose : causes the application to output the server's messages to the console
|
||||
-v : same as -verbose
|
||||
-i# : override the iteration spawn offset increment (default 300) (example: -i100)
|
||||
-x# : set the X offset to generate land around (example: -x0)
|
||||
-y# : set the X offset to generate land around (example: -y0)
|
||||
|
||||
Switches:
|
||||
-verbose : causes the application to output the server's messages to the console
|
||||
-v : same as -verbose
|
||||
-i# : override the iteration spawn offset increment (default 300) (example: -i100)
|
||||
-x# : set the X offset to generate land around (example: -x0)
|
||||
-y# : set the X offset to generate land around (example: -y0)
|
||||
Other options:
|
||||
java -jar MinecraftLandGenerator.jar -printspawn
|
||||
java -jar MinecraftLandGenerator.jar -ps
|
||||
Outputs the current world's spawn point coordinates.
|
||||
|
||||
Other options:
|
||||
java -jar MinecraftLandGenerator.jar -printspawn
|
||||
java -jar MinecraftLandGenerator.jar -ps
|
||||
Outputs the current world's spawn point coordinates.
|
||||
java -jar MinecraftLandGenerator.jar -conf
|
||||
Generates a MinecraftLandGenerator.conf file.
|
||||
|
||||
java -jar MinecraftLandGenerator.jar -conf
|
||||
Generates a MinecraftLandGenerator.conf file.
|
||||
java -jar MinecraftLandGenerator.jar -version
|
||||
java -jar MinecraftLandGenerator.jar -help
|
||||
java -jar MinecraftLandGenerator.jar /?
|
||||
Prints this message.
|
||||
|
||||
java -jar MinecraftLandGenerator.jar -version
|
||||
java -jar MinecraftLandGenerator.jar -help
|
||||
java -jar MinecraftLandGenerator.jar /?
|
||||
Prints this message.
|
||||
|
||||
When launched with the -conf switch, this application creates a MinecraftLandGenerator.conf file that contains configuration options.
|
||||
If this file does not exist or does not contain all required properties, the application will not run.
|
||||
|
||||
MinecraftLandGenerator.conf properties:
|
||||
java : the command line to use to launch the server
|
||||
serverpath : the path to the directory in which the server runs (can be overridden by the serverpath argument)
|
||||
When launched with the -conf switch, this application creates a MinecraftLandGenerator.conf file that contains configuration options.
|
||||
If this file does not exist or does not contain all required properties, the application will not run.
|
||||
|
||||
MinecraftLandGenerator.conf properties:
|
||||
Java : The command line to use to launch the server
|
||||
ServerPath : The path to the directory in which the server runs (can be overridden by the serverpath argument)
|
||||
Done_Text : The output from the server that tells us that we are done
|
||||
Preparing_Text : The output from the server that tells us the percentage
|
||||
-----------------------------------------------
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user