+ RBXLegacy does not knowingly host copyrighted content. If you host a server, we store your IP address, but it is not publicly distributed to users on the site.
+
+ RBXLegacy does not knowingly host copyrighted content. If you host a server, we store your IP address, but it is not publicly distributed to users on the site.
+
+ RBXLegacy does not knowingly host copyrighted content. If you host a server, we store your IP address, but it is not publicly distributed to users on the site.
+
+
+
+
diff --git a/RBXLegacy_site/images/Logo.png b/RBXLegacy_site/images/Logo.png
new file mode 100644
index 0000000..b715a48
Binary files /dev/null and b/RBXLegacy_site/images/Logo.png differ
diff --git a/RBXLegacy_site/images/rbxlegacyicon.ico b/RBXLegacy_site/images/rbxlegacyicon.ico
new file mode 100644
index 0000000..d166bf8
Binary files /dev/null and b/RBXLegacy_site/images/rbxlegacyicon.ico differ
diff --git a/RBXLegacy_site/index.php b/RBXLegacy_site/index.php
new file mode 100644
index 0000000..41f5bde
--- /dev/null
+++ b/RBXLegacy_site/index.php
@@ -0,0 +1,51 @@
+
+
+
+RBXLegacy
+
+
+
+
+
+
+
+
+
+
+
+ RBXLegacy does not knowingly host copyrighted content. If you host a server, we store your IP address, but it is not publicly distributed to users on the site.
+
+
+
+
diff --git a/RBXLegacy_site/js/js_funcs.js b/RBXLegacy_site/js/js_funcs.js
new file mode 100644
index 0000000..4e733b5
--- /dev/null
+++ b/RBXLegacy_site/js/js_funcs.js
@@ -0,0 +1,60 @@
+// *** TO BE CUSTOMISED ***
+
+var style_cookie_name = "style" ;
+var style_cookie_duration = 30 ;
+var style_domain = "localhost" ;
+
+// *** END OF CUSTOMISABLE SECTION ***
+// You do not need to customise anything below this line
+
+function switch_style ( css_title )
+{
+// You may use this script on your site free of charge provided
+// you do not remove this notice or the URL below. Script from
+// https://www.thesitewizard.com/javascripts/change-style-sheets.shtml
+ var i, link_tag ;
+ for (i = 0, link_tag = document.getElementsByTagName("link") ;
+ i < link_tag.length ; i++ ) {
+ if ((link_tag[i].rel.indexOf( "stylesheet" ) != -1) &&
+ link_tag[i].title) {
+ link_tag[i].disabled = true ;
+ if (link_tag[i].title == css_title) {
+ link_tag[i].disabled = false ;
+ }
+ }
+ set_cookie( style_cookie_name, css_title,
+ style_cookie_duration, style_domain );
+ }
+}
+function set_style_from_cookie()
+{
+ var css_title = get_cookie( style_cookie_name );
+ if (css_title.length) {
+ switch_style( css_title );
+ }
+}
+function set_cookie ( cookie_name, cookie_value,
+ lifespan_in_days, valid_domain )
+{
+ // https://www.thesitewizard.com/javascripts/cookies.shtml
+ var domain_string = valid_domain ?
+ ("; domain=" + valid_domain) : '' ;
+ document.cookie = cookie_name +
+ "=" + encodeURIComponent( cookie_value ) +
+ "; max-age=" + 60 * 60 *
+ 24 * lifespan_in_days +
+ "; path=/" + domain_string ;
+}
+function get_cookie ( cookie_name )
+{
+ // https://www.thesitewizard.com/javascripts/cookies.shtml
+ var cookie_string = document.cookie ;
+ if (cookie_string.length != 0) {
+ var cookie_value = cookie_string.match (
+ '(^|;)[\s]*' +
+ cookie_name +
+ '=([^;]*)' );
+ return decodeURIComponent ( cookie_value[2] ) ;
+ }
+ return '' ;
+}
diff --git a/RBXLegacy_site/rbxlegacy_games.sql b/RBXLegacy_site/rbxlegacy_games.sql
new file mode 100644
index 0000000..3cbfa98
--- /dev/null
+++ b/RBXLegacy_site/rbxlegacy_games.sql
@@ -0,0 +1,62 @@
+-- phpMyAdmin SQL Dump
+-- version 4.6.4
+-- https://www.phpmyadmin.net/
+--
+-- Host: 127.0.0.1
+-- Generation Time: Jun 13, 2017 at 10:16 PM
+-- Server version: 5.6.21
+-- PHP Version: 5.6.25
+
+SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
+SET time_zone = "+00:00";
+
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8mb4 */;
+
+--
+-- Database: `rbxlegacy_games`
+--
+CREATE DATABASE IF NOT EXISTS `rbxlegacy_games` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
+USE `rbxlegacy_games`;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `games`
+--
+
+CREATE TABLE `games` (
+ `id` int(11) NOT NULL,
+ `name` text,
+ `map` text,
+ `ip` text,
+ `port` text,
+ `client` text,
+ `playerlimit` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
+--
+-- Indexes for dumped tables
+--
+
+--
+-- Indexes for table `games`
+--
+ALTER TABLE `games`
+ ADD PRIMARY KEY (`id`);
+
+--
+-- AUTO_INCREMENT for dumped tables
+--
+
+--
+-- AUTO_INCREMENT for table `games`
+--
+ALTER TABLE `games`
+ MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
diff --git a/RBXLegacy_site/removeserver.php b/RBXLegacy_site/removeserver.php
new file mode 100644
index 0000000..672e881
--- /dev/null
+++ b/RBXLegacy_site/removeserver.php
@@ -0,0 +1,80 @@
+
+
+
+RBXLegacy
+
+
+
+
+
+
+
+
+
+
+query($sql);
+if (!$result)
+{
+ printf("Error: %s\n", $con->error);
+}
+
+while($row = mysqli_fetch_array($result, MYSQLI_ASSOC))
+{
+$ip = base64_decode($row['ip']);
+if($_SERVER['REMOTE_ADDR'] == $ip)
+{
+$delsql="DELETE FROM games
+WHERE id = $row[id]";
+
+$resultdel=$con->query($delsql);
+if (!$resultdel)
+{
+ printf("Error: %s\n", $con->error);
+}
+}
+}
+
+$con->close();
+?>
+
+ RBXLegacy does not knowingly host copyrighted content. If you host a server, we store your IP address, but it is not publicly distributed to users on the site.
+