From 0041c935b73e912aae0c1a72700ef2c2dbf5417d Mon Sep 17 00:00:00 2001 From: Morlok8k Date: Mon, 8 Jul 2013 21:06:31 -0700 Subject: [PATCH] 1.7.4 License Update --- LICENSE.txt | 14 ++++++++ scripts/MLG_Initial_Setup_Linux.sh | 18 +++++++++++ scripts/MLG_Initial_Setup_Mac.command | 18 +++++++++++ scripts/MLG_Initial_Setup_Windows.cmd | 32 +++++++++++++++++++ scripts/MLG_Printspawn_Linux.sh | 18 +++++++++++ scripts/MLG_Printspawn_Mac.command | 18 +++++++++++ scripts/MLG_Printspawn_Windows.cmd | 32 +++++++++++++++++++ scripts/MLG_Test_Run_Linux.sh | 18 +++++++++++ scripts/MLG_Test_Run_Mac.command | 18 +++++++++++ scripts/MLG_Test_Run_Windows.cmd | 32 +++++++++++++++++++ scripts/Run_MLG_Linux.sh | 18 +++++++++++ scripts/Run_MLG_Mac.command | 18 +++++++++++ scripts/Run_MLG_Windows.cmd | 32 +++++++++++++++++++ scripts/Run_Server_Linux.sh | 18 +++++++++++ scripts/Run_Server_Mac.command | 18 +++++++++++ scripts/Run_Server_Windows.cmd | 32 +++++++++++++++++++ .../Update_MLG_Extra_Files_All-OS_Linux.sh | 18 +++++++++++ .../Update_MLG_Extra_Files_All-OS_Mac.command | 18 +++++++++++ .../Update_MLG_Extra_Files_All-OS_Windows.cmd | 32 +++++++++++++++++++ scripts/Update_MLG_Extra_Files_Linux.sh | 18 +++++++++++ scripts/Update_MLG_Extra_Files_Mac.command | 18 +++++++++++ scripts/Update_MLG_Extra_Files_Windows.cmd | 32 +++++++++++++++++++ scripts/Update_MLG_Linux.sh | 18 +++++++++++ scripts/Update_MLG_Mac.command | 18 +++++++++++ scripts/Update_MLG_Windows.cmd | 32 +++++++++++++++++++ scripts/Update_Server_Linux.sh | 18 +++++++++++ scripts/Update_Server_Mac.command | 18 +++++++++++ scripts/Update_Server_Windows.cmd | 32 +++++++++++++++++++ .../MinecraftLandGenerator/Arraylist.java | 21 ++++++++++++ .../MinecraftLandGenerator/Coordinates.java | 19 +++++++++++ .../MinecraftLandGenerator/DownloadFile.java | 19 +++++++++++ .../MinecraftLandGenerator/FileRead.java | 19 +++++++++++ .../MinecraftLandGenerator/FileWrite.java | 19 +++++++++++ .../MinecraftLandGenerator/GUI/MLG_GUI.java | 19 +++++++++++ .../MinecraftLandGenerator/GUI/Start.java | 19 +++++++++++ .../MinecraftLandGenerator/Input_CLI.java | 19 +++++++++++ src/morlok8k/MinecraftLandGenerator/MD5.java | 19 +++++++++++ src/morlok8k/MinecraftLandGenerator/Main.java | 19 +++++++++++ src/morlok8k/MinecraftLandGenerator/Misc.java | 19 +++++++++++ src/morlok8k/MinecraftLandGenerator/Out.java | 19 +++++++++++ .../Readme_and_HelpInfo.java | 27 +++++++++++++++- .../MinecraftLandGenerator/SelfAware.java | 19 +++++++++++ .../MinecraftLandGenerator/Server.java | 19 +++++++++++ .../MinecraftLandGenerator/SpawnPoint.java | 19 +++++++++++ .../MinecraftLandGenerator/Startup.java | 19 +++++++++++ .../StringArrayParse.java | 19 +++++++++++ src/morlok8k/MinecraftLandGenerator/Time.java | 19 +++++++++++ .../MinecraftLandGenerator/Update.java | 19 +++++++++++ .../MinecraftLandGenerator/WorldVerify.java | 19 +++++++++++ src/morlok8k/MinecraftLandGenerator/var.java | 21 +++++++++++- src/org/w3c/bert_bos/UTF8URL/Unescape.java | 14 ++++++++ 51 files changed, 1068 insertions(+), 2 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..24da8cd --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,14 @@ + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/scripts/MLG_Initial_Setup_Linux.sh b/scripts/MLG_Initial_Setup_Linux.sh index f321893..e3d7796 100755 --- a/scripts/MLG_Initial_Setup_Linux.sh +++ b/scripts/MLG_Initial_Setup_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Initial Setup - Linux diff --git a/scripts/MLG_Initial_Setup_Mac.command b/scripts/MLG_Initial_Setup_Mac.command index 6f5d1a6..b35b10c 100755 --- a/scripts/MLG_Initial_Setup_Mac.command +++ b/scripts/MLG_Initial_Setup_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Initial Setup - Mac OSX echo $PWD diff --git a/scripts/MLG_Initial_Setup_Windows.cmd b/scripts/MLG_Initial_Setup_Windows.cmd index f0fb1c9..92a6296 100644 --- a/scripts/MLG_Initial_Setup_Windows.cmd +++ b/scripts/MLG_Initial_Setup_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Initial Setup - Windows diff --git a/scripts/MLG_Printspawn_Linux.sh b/scripts/MLG_Printspawn_Linux.sh index e47024e..fb255db 100755 --- a/scripts/MLG_Printspawn_Linux.sh +++ b/scripts/MLG_Printspawn_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Print Spawn - Linux diff --git a/scripts/MLG_Printspawn_Mac.command b/scripts/MLG_Printspawn_Mac.command index cd3a891..63b5676 100755 --- a/scripts/MLG_Printspawn_Mac.command +++ b/scripts/MLG_Printspawn_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Print Spawn - Mac OSX echo $PWD diff --git a/scripts/MLG_Printspawn_Windows.cmd b/scripts/MLG_Printspawn_Windows.cmd index 37f6730..244df94 100644 --- a/scripts/MLG_Printspawn_Windows.cmd +++ b/scripts/MLG_Printspawn_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Print Spawn - Windows diff --git a/scripts/MLG_Test_Run_Linux.sh b/scripts/MLG_Test_Run_Linux.sh index f8a0a73..e65678b 100755 --- a/scripts/MLG_Test_Run_Linux.sh +++ b/scripts/MLG_Test_Run_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Test Run - Linux diff --git a/scripts/MLG_Test_Run_Mac.command b/scripts/MLG_Test_Run_Mac.command index 247d35b..5b31db1 100755 --- a/scripts/MLG_Test_Run_Mac.command +++ b/scripts/MLG_Test_Run_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Test Run - Mac OSX echo $PWD diff --git a/scripts/MLG_Test_Run_Windows.cmd b/scripts/MLG_Test_Run_Windows.cmd index 066040a..fa5b95f 100644 --- a/scripts/MLG_Test_Run_Windows.cmd +++ b/scripts/MLG_Test_Run_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Test Run - Windows diff --git a/scripts/Run_MLG_Linux.sh b/scripts/Run_MLG_Linux.sh index fe8efd1..48e3bb3 100755 --- a/scripts/Run_MLG_Linux.sh +++ b/scripts/Run_MLG_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Run MLG - Linux diff --git a/scripts/Run_MLG_Mac.command b/scripts/Run_MLG_Mac.command index b5fd4ee..f1a32e5 100755 --- a/scripts/Run_MLG_Mac.command +++ b/scripts/Run_MLG_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Run MLG - Mac OSX echo $PWD diff --git a/scripts/Run_MLG_Windows.cmd b/scripts/Run_MLG_Windows.cmd index 1d7b4f2..b99f526 100644 --- a/scripts/Run_MLG_Windows.cmd +++ b/scripts/Run_MLG_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Run MLG - Windows diff --git a/scripts/Run_Server_Linux.sh b/scripts/Run_Server_Linux.sh index 4cad345..9cea11f 100755 --- a/scripts/Run_Server_Linux.sh +++ b/scripts/Run_Server_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Run Minecraft Server - Linux diff --git a/scripts/Run_Server_Mac.command b/scripts/Run_Server_Mac.command index ca6485c..5b188d9 100755 --- a/scripts/Run_Server_Mac.command +++ b/scripts/Run_Server_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Run Minecraft Server - Mac OSX echo $PWD diff --git a/scripts/Run_Server_Windows.cmd b/scripts/Run_Server_Windows.cmd index 937f0ca..f85330c 100644 --- a/scripts/Run_Server_Windows.cmd +++ b/scripts/Run_Server_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Run Minecraft Server - Windows diff --git a/scripts/Update_MLG_Extra_Files_All-OS_Linux.sh b/scripts/Update_MLG_Extra_Files_All-OS_Linux.sh index 4b10a92..dfaaf88 100755 --- a/scripts/Update_MLG_Extra_Files_All-OS_Linux.sh +++ b/scripts/Update_MLG_Extra_Files_All-OS_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Update Extra MLG Files All OS - Linux diff --git a/scripts/Update_MLG_Extra_Files_All-OS_Mac.command b/scripts/Update_MLG_Extra_Files_All-OS_Mac.command index 1b965b4..f5d6c0b 100755 --- a/scripts/Update_MLG_Extra_Files_All-OS_Mac.command +++ b/scripts/Update_MLG_Extra_Files_All-OS_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Update Extra MLG Files All OS - Mac OSX echo $PWD diff --git a/scripts/Update_MLG_Extra_Files_All-OS_Windows.cmd b/scripts/Update_MLG_Extra_Files_All-OS_Windows.cmd index b0570f5..d354ccb 100644 --- a/scripts/Update_MLG_Extra_Files_All-OS_Windows.cmd +++ b/scripts/Update_MLG_Extra_Files_All-OS_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Update Extra MLG Files All OS - Windows diff --git a/scripts/Update_MLG_Extra_Files_Linux.sh b/scripts/Update_MLG_Extra_Files_Linux.sh index a19a41e..49347be 100755 --- a/scripts/Update_MLG_Extra_Files_Linux.sh +++ b/scripts/Update_MLG_Extra_Files_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Update Extra MLG Files - Linux diff --git a/scripts/Update_MLG_Extra_Files_Mac.command b/scripts/Update_MLG_Extra_Files_Mac.command index d0ccea3..59c4a47 100755 --- a/scripts/Update_MLG_Extra_Files_Mac.command +++ b/scripts/Update_MLG_Extra_Files_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Update Extra MLG Files - Mac OSX echo $PWD diff --git a/scripts/Update_MLG_Extra_Files_Windows.cmd b/scripts/Update_MLG_Extra_Files_Windows.cmd index 4beb61b..21de353 100644 --- a/scripts/Update_MLG_Extra_Files_Windows.cmd +++ b/scripts/Update_MLG_Extra_Files_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Update Extra MLG Files - Windows diff --git a/scripts/Update_MLG_Linux.sh b/scripts/Update_MLG_Linux.sh index 2f955ad..ef9d5a0 100755 --- a/scripts/Update_MLG_Linux.sh +++ b/scripts/Update_MLG_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Update MLG - Linux diff --git a/scripts/Update_MLG_Mac.command b/scripts/Update_MLG_Mac.command index 3a477a5..4a27418 100755 --- a/scripts/Update_MLG_Mac.command +++ b/scripts/Update_MLG_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Update MLG - Mac OSX echo $PWD diff --git a/scripts/Update_MLG_Windows.cmd b/scripts/Update_MLG_Windows.cmd index 3913ebc..ac8b4c5 100644 --- a/scripts/Update_MLG_Windows.cmd +++ b/scripts/Update_MLG_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Update MLG - Windows diff --git a/scripts/Update_Server_Linux.sh b/scripts/Update_Server_Linux.sh index 16a6778..e9b1a9b 100755 --- a/scripts/Update_Server_Linux.sh +++ b/scripts/Update_Server_Linux.sh @@ -1,4 +1,22 @@ #!/bin/sh + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + BINDIR=$(dirname "$(readlink -fn "$0")") cd "$BINDIR" echo Minecraft Land Generator - Update Minecraft Server - Linux diff --git a/scripts/Update_Server_Mac.command b/scripts/Update_Server_Mac.command index e04f7e6..36f49ab 100755 --- a/scripts/Update_Server_Mac.command +++ b/scripts/Update_Server_Mac.command @@ -1,4 +1,22 @@ #!/bin/bash + +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### + cd "$(dirname "$0")" echo Minecraft Land Generator - Update Minecraft Server - Mac OSX echo $PWD diff --git a/scripts/Update_Server_Windows.cmd b/scripts/Update_Server_Windows.cmd index 9551b29..7169198 100644 --- a/scripts/Update_Server_Windows.cmd +++ b/scripts/Update_Server_Windows.cmd @@ -1,4 +1,36 @@ @echo off +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: Version 2, December 2004 + +:: + +:: Copyright (C) 2004 Sam Hocevar + +:: + +:: Everyone is permitted to copy and distribute verbatim or modified + +:: copies of this license document, and changing it is allowed as long + +:: as the name is changed. + +:: + +:: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + +:: TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +:: + +:: 0. You just DO WHAT THE FUCK YOU WANT TO. + +:: + + + SET BINDIR=%~dp0 CD /D "%BINDIR%" SET ScriptTitle=Minecraft Land Generator - Update Minecraft Server - Windows diff --git a/src/morlok8k/MinecraftLandGenerator/Arraylist.java b/src/morlok8k/MinecraftLandGenerator/Arraylist.java index e02dfd3..1064551 100644 --- a/src/morlok8k/MinecraftLandGenerator/Arraylist.java +++ b/src/morlok8k/MinecraftLandGenerator/Arraylist.java @@ -1,3 +1,24 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + + + /** * */ diff --git a/src/morlok8k/MinecraftLandGenerator/Coordinates.java b/src/morlok8k/MinecraftLandGenerator/Coordinates.java index 72ab60d..af40df1 100644 --- a/src/morlok8k/MinecraftLandGenerator/Coordinates.java +++ b/src/morlok8k/MinecraftLandGenerator/Coordinates.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.util.regex.Matcher; diff --git a/src/morlok8k/MinecraftLandGenerator/DownloadFile.java b/src/morlok8k/MinecraftLandGenerator/DownloadFile.java index 8867c05..d519be8 100644 --- a/src/morlok8k/MinecraftLandGenerator/DownloadFile.java +++ b/src/morlok8k/MinecraftLandGenerator/DownloadFile.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedInputStream; diff --git a/src/morlok8k/MinecraftLandGenerator/FileRead.java b/src/morlok8k/MinecraftLandGenerator/FileRead.java index 8db2ecf..bdaac1c 100644 --- a/src/morlok8k/MinecraftLandGenerator/FileRead.java +++ b/src/morlok8k/MinecraftLandGenerator/FileRead.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedReader; diff --git a/src/morlok8k/MinecraftLandGenerator/FileWrite.java b/src/morlok8k/MinecraftLandGenerator/FileWrite.java index 5035cfb..b754975 100644 --- a/src/morlok8k/MinecraftLandGenerator/FileWrite.java +++ b/src/morlok8k/MinecraftLandGenerator/FileWrite.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedWriter; diff --git a/src/morlok8k/MinecraftLandGenerator/GUI/MLG_GUI.java b/src/morlok8k/MinecraftLandGenerator/GUI/MLG_GUI.java index be75654..28bf3c0 100644 --- a/src/morlok8k/MinecraftLandGenerator/GUI/MLG_GUI.java +++ b/src/morlok8k/MinecraftLandGenerator/GUI/MLG_GUI.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator.GUI; import java.awt.BorderLayout; diff --git a/src/morlok8k/MinecraftLandGenerator/GUI/Start.java b/src/morlok8k/MinecraftLandGenerator/GUI/Start.java index 46424a5..c42fbc9 100644 --- a/src/morlok8k/MinecraftLandGenerator/GUI/Start.java +++ b/src/morlok8k/MinecraftLandGenerator/GUI/Start.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator.GUI; import morlok8k.MinecraftLandGenerator.Time; diff --git a/src/morlok8k/MinecraftLandGenerator/Input_CLI.java b/src/morlok8k/MinecraftLandGenerator/Input_CLI.java index 925a119..76007b9 100644 --- a/src/morlok8k/MinecraftLandGenerator/Input_CLI.java +++ b/src/morlok8k/MinecraftLandGenerator/Input_CLI.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; /** diff --git a/src/morlok8k/MinecraftLandGenerator/MD5.java b/src/morlok8k/MinecraftLandGenerator/MD5.java index 7494a41..63984ed 100644 --- a/src/morlok8k/MinecraftLandGenerator/MD5.java +++ b/src/morlok8k/MinecraftLandGenerator/MD5.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.FileInputStream; diff --git a/src/morlok8k/MinecraftLandGenerator/Main.java b/src/morlok8k/MinecraftLandGenerator/Main.java index b3448c3..7d406be 100644 --- a/src/morlok8k/MinecraftLandGenerator/Main.java +++ b/src/morlok8k/MinecraftLandGenerator/Main.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + /* * The Computer Programmer's Lament: * Program complexity grows until it exceeds the capability of the programmer who must maintain it. diff --git a/src/morlok8k/MinecraftLandGenerator/Misc.java b/src/morlok8k/MinecraftLandGenerator/Misc.java index eb8ae8f..3bf4364 100644 --- a/src/morlok8k/MinecraftLandGenerator/Misc.java +++ b/src/morlok8k/MinecraftLandGenerator/Misc.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.File; diff --git a/src/morlok8k/MinecraftLandGenerator/Out.java b/src/morlok8k/MinecraftLandGenerator/Out.java index fa19903..6099074 100644 --- a/src/morlok8k/MinecraftLandGenerator/Out.java +++ b/src/morlok8k/MinecraftLandGenerator/Out.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import javax.swing.JOptionPane; diff --git a/src/morlok8k/MinecraftLandGenerator/Readme_and_HelpInfo.java b/src/morlok8k/MinecraftLandGenerator/Readme_and_HelpInfo.java index 9eeab3c..07751e7 100644 --- a/src/morlok8k/MinecraftLandGenerator/Readme_and_HelpInfo.java +++ b/src/morlok8k/MinecraftLandGenerator/Readme_and_HelpInfo.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; /** @@ -49,7 +68,11 @@ public class Readme_and_HelpInfo { + "When a Minecraft server is launched, it automatically generates chunks within a square area of 25x25 chunks (400x400 blocks), centered on the current spawn point (formally 20x20 chunks, 320x320 blocks). When provided X and Z ranges as arguments, this program will launch the server repeatedly, editing the level.dat file between sessions, to generate large amounts of land without players having to explore them. The generated land will have about the X and Z ranges as requested by the arguments, though it will not be exact due to the spawn point typically not on the border of a chunk. (Because of this, MLG by default adds a slight overlap with each pass - 380x380 blocks) You can use the -x and -z switches to override the spawn offset and center the land generation on a different point." + n + "The program makes a backup of level.dat as level_backup.dat before editing, and restores the backup at the end. In the event that a level_backup.dat file already exists, the program will refuse to proceed, leaving the user to determine why the level_backup.dat file exists and whether they would rather restore it or delete it, which must be done manually." + n + n - + "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.)" + n + + "This program is free, 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.)" + n + + n + + "Copyright \u00A9 2010" + n + + "This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http://www.wtfpl.net/ for more details." + n + + n + "The JNBT library is included (inside the .jar). It is not public domain. Its license is included, as LICENSE.TXT." + n + "It is also available at: http://jnbt.sourceforge.net/ (Original) and at: https://github.com/Morlok8k/JNBT (Current)" + n + n @@ -73,6 +96,8 @@ public class Readme_and_HelpInfo { // + "- TODO: 16/512 block selecting" + n // + "- TODO: recaculate existing coords with new code" + n // + "- TODO: change 380 to 384?" + n //TODO + + "1.7.4" + n + + "- Released Minecraft land Generator under the WTFPL. (With the permission of Corrodias)" +n + "1.7.3" + n + "- Fixed a minor display bug (specifically when using Server Generation Fix Mod)" + n + "- Updated Readme text a bit." +n diff --git a/src/morlok8k/MinecraftLandGenerator/SelfAware.java b/src/morlok8k/MinecraftLandGenerator/SelfAware.java index ebcb3ab..8f93950 100644 --- a/src/morlok8k/MinecraftLandGenerator/SelfAware.java +++ b/src/morlok8k/MinecraftLandGenerator/SelfAware.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.lang.management.ManagementFactory; diff --git a/src/morlok8k/MinecraftLandGenerator/Server.java b/src/morlok8k/MinecraftLandGenerator/Server.java index f3529a1..4037027 100644 --- a/src/morlok8k/MinecraftLandGenerator/Server.java +++ b/src/morlok8k/MinecraftLandGenerator/Server.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedReader; diff --git a/src/morlok8k/MinecraftLandGenerator/SpawnPoint.java b/src/morlok8k/MinecraftLandGenerator/SpawnPoint.java index b927438..db5b31d 100644 --- a/src/morlok8k/MinecraftLandGenerator/SpawnPoint.java +++ b/src/morlok8k/MinecraftLandGenerator/SpawnPoint.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.File; diff --git a/src/morlok8k/MinecraftLandGenerator/Startup.java b/src/morlok8k/MinecraftLandGenerator/Startup.java index 5978541..cb76230 100644 --- a/src/morlok8k/MinecraftLandGenerator/Startup.java +++ b/src/morlok8k/MinecraftLandGenerator/Startup.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedReader; diff --git a/src/morlok8k/MinecraftLandGenerator/StringArrayParse.java b/src/morlok8k/MinecraftLandGenerator/StringArrayParse.java index c4ec509..3158987 100644 --- a/src/morlok8k/MinecraftLandGenerator/StringArrayParse.java +++ b/src/morlok8k/MinecraftLandGenerator/StringArrayParse.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; /** diff --git a/src/morlok8k/MinecraftLandGenerator/Time.java b/src/morlok8k/MinecraftLandGenerator/Time.java index 211fab3..9e44f6d 100644 --- a/src/morlok8k/MinecraftLandGenerator/Time.java +++ b/src/morlok8k/MinecraftLandGenerator/Time.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; /** diff --git a/src/morlok8k/MinecraftLandGenerator/Update.java b/src/morlok8k/MinecraftLandGenerator/Update.java index c256c8b..7ca1a56 100644 --- a/src/morlok8k/MinecraftLandGenerator/Update.java +++ b/src/morlok8k/MinecraftLandGenerator/Update.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedReader; diff --git a/src/morlok8k/MinecraftLandGenerator/WorldVerify.java b/src/morlok8k/MinecraftLandGenerator/WorldVerify.java index fa1d63d..4e28eb8 100644 --- a/src/morlok8k/MinecraftLandGenerator/WorldVerify.java +++ b/src/morlok8k/MinecraftLandGenerator/WorldVerify.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.io.BufferedReader; diff --git a/src/morlok8k/MinecraftLandGenerator/var.java b/src/morlok8k/MinecraftLandGenerator/var.java index 0c4e98f..e148e3f 100644 --- a/src/morlok8k/MinecraftLandGenerator/var.java +++ b/src/morlok8k/MinecraftLandGenerator/var.java @@ -1,3 +1,22 @@ +/* +####################################################################### +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# Version 2, December 2004 # +# # +# Copyright (C) 2004 Sam Hocevar # +# # +# Everyone is permitted to copy and distribute verbatim or modified # +# copies of this license document, and changing it is allowed as long # +# as the name is changed. # +# # +# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE # +# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION # +# # +# 0. You just DO WHAT THE FUCK YOU WANT TO. # +# # +####################################################################### +*/ + package morlok8k.MinecraftLandGenerator; import java.text.DateFormat; @@ -28,7 +47,7 @@ public class var { public static final String PROG_NAME = "Minecraft Land Generator"; /** Version Number! */ - public static final String VERSION = "1.7.3"; + public static final String VERSION = "1.7.4"; /** Authors */ public static final String AUTHORS = "Corrodias, Morlok8k, pr0f1x, jaseg"; diff --git a/src/org/w3c/bert_bos/UTF8URL/Unescape.java b/src/org/w3c/bert_bos/UTF8URL/Unescape.java index cdbf1dc..7e640d9 100644 --- a/src/org/w3c/bert_bos/UTF8URL/Unescape.java +++ b/src/org/w3c/bert_bos/UTF8URL/Unescape.java @@ -1,3 +1,17 @@ +/* +This work (and included software, documentation such as READMEs, or other related items) is being provided by the copyright holders under the following license. +License +By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. +Permission to copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications: +The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. +Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software Short Notice should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code. +Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) +Disclaimers +THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. +COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. +The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. +*/ + package org.w3c.bert_bos.UTF8URL; /**