From 0209f3e61731a82abfdb22f9bde0edc2bce17ba9 Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Tue, 29 May 2018 01:06:44 -0400 Subject: [PATCH] Added patching server web files. --- www/vercheck/.htaccess | 3 + www/vercheck/index.php | 123 +++++++++++++++++++++++++++++++++++++++ www/vercheck/patches.php | 64 ++++++++++++++++++++ 3 files changed, 190 insertions(+) create mode 100644 www/vercheck/.htaccess create mode 100644 www/vercheck/index.php create mode 100644 www/vercheck/patches.php diff --git a/www/vercheck/.htaccess b/www/vercheck/.htaccess new file mode 100644 index 00000000..51c6beec --- /dev/null +++ b/www/vercheck/.htaccess @@ -0,0 +1,3 @@ +RewriteEngine On +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule ^ index.php [QSA,L] diff --git a/www/vercheck/index.php b/www/vercheck/index.php new file mode 100644 index 00000000..061cc2e1 --- /dev/null +++ b/www/vercheck/index.php @@ -0,0 +1,123 @@ + \ No newline at end of file diff --git a/www/vercheck/patches.php b/www/vercheck/patches.php new file mode 100644 index 00000000..6aace7af --- /dev/null +++ b/www/vercheck/patches.php @@ -0,0 +1,64 @@ + "2010.09.18.0000", +); + +$GAME_PATCHES = array( + "2010.07.10.0000" => "2010.09.19.0000", + "2010.09.19.0000" => "2010.09.23.0000", + "2010.09.23.0000" => "2010.09.28.0000", + "2010.09.28.0000" => "2010.10.07.0001", + "2010.10.07.0001" => "2010.10.14.0000", + "2010.10.14.0000" => "2010.10.22.0000", + "2010.10.22.0000" => "2010.10.26.0000", + "2010.10.26.0000" => "2010.11.25.0002", + "2010.11.25.0002" => "2010.11.30.0000", + "2010.11.30.0000" => "2010.12.06.0000", + "2010.12.06.0000" => "2010.12.13.0000", + "2010.12.13.0000" => "2010.12.21.0000", + "2010.12.21.0000" => "2011.01.18.0000", + "2011.01.18.0000" => "2011.02.01.0000", + "2011.02.01.0000" => "2011.02.10.0000", + "2011.02.10.0000" => "2011.03.01.0000", + "2011.03.01.0000" => "2011.03.24.0000", + "2011.03.24.0000" => "2011.03.30.0000", + "2011.03.30.0000" => "2011.04.13.0000", + "2011.04.13.0000" => "2011.04.21.0000", + "2011.04.21.0000" => "2011.05.19.0000", + "2011.05.19.0000" => "2011.06.10.0000", + "2011.06.10.0000" => "2011.07.20.0000", + "2011.07.20.0000" => "2011.07.26.0000", + "2011.07.26.0000" => "2011.08.05.0000", + "2011.08.05.0000" => "2011.08.09.0000", + "2011.08.09.0000" => "2011.08.16.0000", + "2011.08.16.0000" => "2011.10.04.0000", + "2011.10.04.0000" => "2011.10.12.0001", + "2011.10.12.0001" => "2011.10.27.0000", + "2011.10.27.0000" => "2011.12.14.0000", + "2011.12.14.0000" => "2011.12.23.0000", + "2011.12.23.0000" => "2012.01.18.0000", + "2012.01.18.0000" => "2012.01.24.0000", + "2012.01.24.0000" => "2012.01.31.0000", + "2012.01.31.0000" => "2012.03.07.0000", + "2012.03.07.0000" => "2012.03.09.0000", + "2012.03.09.0000" => "2012.03.22.0000", + "2012.03.22.0000" => "2012.03.29.0000", + "2012.03.29.0000" => "2012.04.04.0000", + "2012.04.04.0000" => "2012.04.23.0001", + "2012.04.23.0001" => "2012.05.08.0000", + "2012.05.08.0000" => "2012.05.15.0000", + "2012.05.15.0000" => "2012.05.22.0000", + "2012.05.22.0000" => "2012.06.06.0000", + "2012.06.06.0000" => "2012.06.19.0000", + "2012.06.19.0000" => "2012.06.26.0000", + "2012.06.26.0000" => "2012.07.21.0000", + "2012.07.21.0000" => "2012.08.10.0000", + "2012.08.10.0000" => "2012.09.06.0000", + "2012.09.06.0000" => "2012.09.19.0001", +); + +?> \ No newline at end of file