diff --git a/RBXLegacyDownPage/images/Logo.png b/RBXLegacyDownPage/images/Logo.png new file mode 100644 index 0000000..bccd2d7 Binary files /dev/null and b/RBXLegacyDownPage/images/Logo.png differ diff --git a/RBXLegacyDownPage/images/Logoold.png b/RBXLegacyDownPage/images/Logoold.png new file mode 100644 index 0000000..624e4e7 Binary files /dev/null and b/RBXLegacyDownPage/images/Logoold.png differ diff --git a/RBXLegacyDownPage/images/OH_NOES.png b/RBXLegacyDownPage/images/OH_NOES.png new file mode 100644 index 0000000..bea7472 Binary files /dev/null and b/RBXLegacyDownPage/images/OH_NOES.png differ diff --git a/RBXLegacyDownPage/index.html b/RBXLegacyDownPage/index.html new file mode 100644 index 0000000..006b713 --- /dev/null +++ b/RBXLegacyDownPage/index.html @@ -0,0 +1,66 @@ + + + +Maintenance + + + + +
+ +
+

+ We are upgrading RBXLegacy!
+ Stay tuned... We'll be back online soon. +

+

+ You will be redirected to RBXLEGACY when we are back up.

+

+

+
+
+ + + + \ No newline at end of file diff --git a/RBXLegacySite/games.php b/RBXLegacySite/games.php index 5b2a378..032add1 100644 --- a/RBXLegacySite/games.php +++ b/RBXLegacySite/games.php @@ -62,6 +62,7 @@ echo "
"; echo "

".noHTML($row['name'])."

"; echo "

Map: ".noHTML($row['map'])."

"; echo "

Client: ".noHTML(base64_decode($row['client']))."

"; +echo "

Version: ".noHTML($_POST['version'])."

"; echo "

Player Limit: ".noHTML($row['playerlimit'])."

"; echo "

Creation Time: ".noHTML($row['date'])."

"; $stringbuild = $row['ip']."|".$row['port']."|".$row['client']; diff --git a/RBXLegacySite/getservercode.php b/RBXLegacySite/getservercode.php index 75d984d..d86070f 100644 --- a/RBXLegacySite/getservercode.php +++ b/RBXLegacySite/getservercode.php @@ -27,11 +27,11 @@ $portcrypt = base64_encode($_POST['port']); date_default_timezone_set('America/Phoenix'); $date = date('m/d/Y h:i:s a', time()); -$sql="INSERT INTO games (name, map, ip, port, client, playerlimit, date) +$sql="INSERT INTO games (name, map, ip, port, client, version, playerlimit, date) VALUES -('$namefixed','$_POST[map]','$ipcrypt','$portcrypt','$clientcrypt','$_POST[playerlimit]','$date')"; +('$namefixed','$_POST[map]','$ipcrypt','$portcrypt','$clientcrypt','$_POST[version]','$_POST[playerlimit]','$date')"; if (!$con->query($sql)) { diff --git a/RBXLegacySite/hostserver.php b/RBXLegacySite/hostserver.php index 2371582..7d9f835 100644 --- a/RBXLegacySite/hostserver.php +++ b/RBXLegacySite/hostserver.php @@ -46,6 +46,8 @@ />

Client: *



+

RBXLegacy Version: *

+

Port: *



Player Limit: *

diff --git a/RBXLegacySite/images/Logo.png b/RBXLegacySite/images/Logo.png index b715a48..bccd2d7 100644 Binary files a/RBXLegacySite/images/Logo.png and b/RBXLegacySite/images/Logo.png differ diff --git a/RBXLegacySite/images/Logoold.png b/RBXLegacySite/images/Logoold.png new file mode 100644 index 0000000..b715a48 Binary files /dev/null and b/RBXLegacySite/images/Logoold.png differ diff --git a/RBXLegacySite/images/rbxlegacyicon.ico b/RBXLegacySite/images/rbxlegacyicon.ico index d166bf8..73e2538 100644 Binary files a/RBXLegacySite/images/rbxlegacyicon.ico and b/RBXLegacySite/images/rbxlegacyicon.ico differ diff --git a/RBXLegacySite/images/rbxlegacyiconold.ico b/RBXLegacySite/images/rbxlegacyiconold.ico new file mode 100644 index 0000000..d166bf8 Binary files /dev/null and b/RBXLegacySite/images/rbxlegacyiconold.ico differ diff --git a/RBXLegacySite/rbxlegacy_games.sql b/RBXLegacySite/rbxlegacy_games.sql index 53b2e58..a1aa0db 100644 --- a/RBXLegacySite/rbxlegacy_games.sql +++ b/RBXLegacySite/rbxlegacy_games.sql @@ -35,6 +35,7 @@ CREATE TABLE `games` ( `ip` text, `port` text, `client` text, + `version` text, `playerlimit` int(11) NOT NULL, `date` text ) ENGINE=InnoDB DEFAULT CHARSET=latin1;