Advertisement
Guest User

Untitled

a guest
Aug 4th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.71 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
  2. "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" version="XHTML+RDFa 1.0" dir="ltr" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:og="http://ogp.me/ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:sioc="http://rdfs.org/sioc/ns#" xmlns:sioct="http://rdfs.org/sioc/types#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
  4. <head profile="http://www.w3.org/1999/xhtml/vocab">
  5. <link rel="icon" href="http://mystcp.pw/images/favicon.ico">
  6. <link href="css/beta.css" rel="stylesheet" type="text/css"/>
  7. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  8. <title>MystCP - Beta</title>
  9. <noscript>
  10. <style>
  11. div { display:none; }
  12. </style>
  13. </noscript>
  14.  
  15. <?php
  16.  
  17. require 'config.php';
  18.  
  19. $_mysql = mysqli_connect($strDBHost, $strDBUser, $strDBPass, $strDBName);
  20.  
  21. if (!isset($_POST['login'])) {
  22.  
  23. ?>
  24.  
  25. <body class="login-body">
  26. <div class="login-container">
  27. <div id="login-form">
  28. <h3>Login</h3>
  29. <fieldset>
  30. <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
  31. <input name="username" type="text" maxlength="10" placeholder="Enter your username" required autofocus>
  32. <input name="password" type="password" maxlength="15" placeholder="Enter your password" required>
  33. <input type="submit" name="login" value="Login">
  34. </form>
  35. </fieldset>
  36. </div>
  37. </div>
  38. </body>
  39.  
  40. <?php
  41.  
  42. } else {
  43.  
  44. $_username = $_POST['username'];
  45. $_password = md5($_POST['password']);
  46.  
  47. if (!isset($_username) ||
  48. !isset($_password) ||
  49. !ctype_alnum($_username) ||
  50. strlen($_username) > 10 ||
  51. strlen($_username) <= 3 ||
  52. strlen($_password) > 15 ||
  53. strlen($_password) <= 3
  54. ) {
  55. header('Location: http://media1.mystcp.pw/');
  56. }
  57.  
  58. $_username = mysqli_real_escape_string($_mysql, $_username);
  59. $_password = mysqli_real_escape_string($_mysql, $_password);
  60.  
  61. $_username = addslashes($_username);
  62. $_password = addslashes($_password);
  63.  
  64. $_beta_check = mysqli_query($_mysql, "SELECT * FROM users WHERE username='" . $_username . "';");
  65. $_result = mysqli_fetch_assoc($_beta_check);
  66.  
  67. if ($_result['username'] == $_username && $_result['password'] == $_password) {
  68.  
  69. ?>
  70.  
  71. <?php
  72. require 'create.php';
  73. ?>
  74. <script type="text/rocketscript">
  75. //<![CDATA[
  76. try{if (!window.CloudFlare) {var CloudFlare=[{verbose:0,p:1458961017,byc:0,owlid:"cf",bag2:1,mirage2:0,oracle:0,paths:{cloudflare:"/cdn-cgi/nexp/dok3v=1613a3a185/"},atok:"74010dc6e0b02d96e212ee253b095acb",petok:"1b543e38f9b17fb62e68474aeab4a9885222b9f5-1458961218-1800",zone:"mystcp.pw",rocket:"a",apps:{},sha2test:0}];document.write('<script type="text/javascript" src="//ajax.cloudflare.com/cdn-cgi/nexp/dok3v=e982913d31/cloudflare.min.js"><'+'\/script>');}}catch(e){};
  77. //]]>
  78. </script>
  79. <script type="text/rocketscript" data-rocketsrc='//clksite.com/adServe/banners?tid=116204_195677_10'></script>
  80. <script data-rocketsrc="http://mystcp.pw/js/jscolor.js" type="text/rocketscript"></script>
  81. <meta name="Generator" content="Drupal 7 (http://drupal.org)"/>
  82. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
  83. <link href="css/bootstrap.css" rel="stylesheet"/>
  84. <link href="css/bootstrap-responsive.css" rel="stylesheet"/>
  85. <link type="text/css" rel="stylesheet" href="css/style.css" media="all"/>
  86. <link href="css/bootstrap.min.css" rel="stylesheet" />
  87. <style type="text/css">
  88. .spoilerbutton {
  89. display:none;
  90. background: #0280cd;
  91. background: -moz-linear-gradient(top, #0280cd 1%, #00529b 100%);
  92. background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#0280cd), color-stop(100%,#00529b));
  93. background: -webkit-linear-gradient(top, #0280cd 1%,#00529b 100%);
  94. background: -o-linear-gradient(top, #0280cd 1%,#00529b 100%);
  95. background: -ms-linear-gradient(top, #0280cd 1%,#00529b 100%);
  96. background: linear-gradient(to bottom, #0280cd 1%,#00529b 100%);
  97. border:none;
  98. font-family: Arial;
  99. color: #ffffff;
  100. font-size: 17px;
  101. padding:3px 6px 2px 7px;
  102. border-radius:3px;
  103. text-decoration: none;
  104. margin-bottom:4px;
  105. }
  106. .spoilerbutton:hover {
  107. background: #00529b;
  108. background: -moz-linear-gradient(top, #00529b 1%, #0280cd 100%);
  109. background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#00529b), color-stop(100%,#0280cd));
  110. background: -webkit-linear-gradient(top, #00529b 1%,#0280cd 100%);
  111. background: -o-linear-gradient(top, #00529b 1%,#0280cd 100%);
  112. background: -ms-linear-gradient(top, #00529b 1%,#0280cd 100%);
  113. background: linear-gradient(to bottom, #00529b 1%,#0280cd 100%);
  114. text-decoration: none;
  115. }
  116. .spoiler {overflow:hidden;}
  117. .spoiler > div {-webkit-transition: all 0.2s ease;-moz-transition: margin 0.2s ease;-o-transition: all 0.2s ease;transition: margin 0.2s ease;}
  118. .spoilerbutton[value="Show Commands"] + .spoiler > div {margin-top:-100%;}
  119. .spoilerbutton[value="Hide Commands"] + .spoiler {padding:5px;}
  120. </style>
  121. <style>
  122. .alert {
  123. margin-bottom:600px;
  124. border:1px solid #000;
  125. border-radius:4px;
  126. position:absolute;
  127. bottom:0;
  128. right:21px;
  129. float:right;
  130. clear:right;
  131. background-color:#fff;
  132. padding:15px;
  133. }
  134.  
  135. .alert-red {
  136. color:#fff;
  137. background-color:#da4453;
  138. }
  139.  
  140. .alert-green {
  141. color:#fff;
  142. background-color:#37bc9b;
  143. }
  144.  
  145. .alert-blue {
  146. color:#fff;
  147. background-color:#4a89dc;
  148. }
  149.  
  150. .alert-yellow {
  151. color:#fff;
  152. background-color:#f6bb42;
  153. }
  154.  
  155. .alert-orange {
  156. color:#fff;
  157. background-color:#e9573f;
  158. }
  159.  
  160. .responstable {
  161. margin: 1em 0;
  162. width: 100%;
  163. background: #FFF;
  164. color: #024457;
  165. border-radius: 10px;
  166. border: 1px solid #167F92;
  167. overflow: hidden;
  168. }
  169. .responstable tr {
  170. border-top: 1px solid #167F92;
  171. border-bottom: 1px solid #167F92;
  172. }
  173. .responstable tr:nth-child(odd) {
  174. background-color: #EAF3F3;
  175. }
  176. .responstable th {
  177. display: none;
  178. border: 1px solid #FFF;
  179. background: #0280cd;
  180. background: -moz-linear-gradient(top, #0280cd 1%, #00529b 100%);
  181. background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#0280cd), color-stop(100%,#00529b));
  182. background: -webkit-linear-gradient(top, #0280cd 1%,#00529b 100%);
  183. background: -o-linear-gradient(top, #0280cd 1%,#00529b 100%);
  184. background: -ms-linear-gradient(top, #0280cd 1%,#00529b 100%);
  185. background: linear-gradient(to bottom, #0280cd 1%,#00529b 100%);
  186. color: #FFF;
  187. }
  188. .responstable td {
  189. display: block;
  190. }
  191. .responstable td:first-child {
  192. padding-top: .5em;
  193. }
  194. .responstable td:last-child {
  195. padding-bottom: .5em;
  196. }
  197. .responstable td:before {
  198. content: attr(data-th) ": ";
  199. font-weight: bold;
  200. width: 8em;
  201. display: inline-block;
  202. }
  203. @media (min-width: 480px) {
  204. .responstable td:before {
  205. display: none;
  206. }
  207. }
  208. @media (min-width: 480px) {
  209. .responstable td {
  210. border: 1px solid #D9E4E6;
  211. }
  212. }
  213. .responstable th,
  214. .responstable td {
  215. text-align: left;
  216. margin: .5em 1em;
  217. }
  218. @media (min-width: 480px) {
  219. .responstable th,
  220. .responstable td {
  221. display: table-cell;
  222. padding: 1em;
  223. }
  224. .responstable th:first-child,
  225. .responstable td:first-child {
  226. text-align: center;
  227. }
  228. }
  229. .oasis-prompts{z-index:10000;color:white;position:absolute;font-family:MyriadWebProRegular;text-align:center;}.oasis-prompts.blue_prompt_extra_large0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/prompts.png?fresh) 0 0 no-repeat;height:300px;width:420px;}.oasis-prompts.blue_prompt_large0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/prompts.png?fresh) -425px 0 no-repeat;height:243px;width:336px;}.oasis-prompts.blue_prompt_small0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/prompts.png?fresh) 0 -305px no-repeat;height:165px;width:336px;}.oasis-prompts.orange_prompt_extra_large0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/prompts.png?fresh) -341px -305px no-repeat;height:301px;width:419px;}.oasis-prompts.orange_prompt_large0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/prompts.png?fresh) 0 -611px no-repeat;height:243px;width:336px;}.oasis-prompts.orange_prompt_small0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/prompts.png?fresh) -341px -611px no-repeat;height:165px;width:336px;}.oasis-buttons.orange_button_extra_large0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) 0 0 no-repeat;height:53px;width:347px;}.oasis-buttons.orange_button_extra_large0000:hover{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -352px 0 no-repeat;height:53px;width:347px;}.oasis-buttons.orange_button_extra_large0000:active{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) 0 -58px no-repeat;height:53px;width:347px;}.oasis-buttons.orange_button_large0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -352px -58px no-repeat;height:53px;width:287px;}.oasis-buttons.orange_button_large0000:hover{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) 0 -116px no-repeat;height:53px;width:287px;}.oasis-buttons.orange_button_large0000:active{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -292px -116px no-repeat;height:53px;width:287px;}.oasis-buttons.orange_button_medium0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) 0 -174px no-repeat;height:53px;width:202px;}.oasis-buttons.orange_button_medium0000:hover{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -207px -174px no-repeat;height:53px;width:202px;}.oasis-buttons{line-height:22px;font-family:MyriadWebProBold;padding-top:14px;margin-top:15px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;}.oasis-buttons.orange_button_medium0000:active{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -414px -174px no-repeat;height:53px;width:202px;}.oasis-buttons.orange_button_small0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) 0 -232px no-repeat;height:53px;width:165px;}.oasis-buttons.orange_button_small0000:hover{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -170px -232px no-repeat;height:53px;width:165px;}.oasis-buttons.orange_button_small0000:active{background:url(//localhost/Oasis/Web/cdn/images/2.0/buttons.png) -340px -232px no-repeat;height:53px;width:165px;}.oasis-avatars{display:inline-block;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.oasis-avatars:hover{opacity:.8;}.oasis-avatars.avatar_card_large_10000{background:url(//localhost/Oasis/Web/cdn/images/2.0/avatars.png) -1px -1px no-repeat;height:313px;width:313px;}.oasis-avatars.avatar_card_large_20000{background:url(//localhost/Oasis/Web/cdn/images/2.0/avatars.png) -319px -1px no-repeat;height:312px;width:313px;}.oasis-avatars.avatar_card_small_10000{background:url(//localhost/Oasis/Web/cdn/images/2.0/avatars.png) -1px -319px no-repeat;height:155px;width:342px;}.oasis-avatars.avatar_card_small_20000{background:url(//localhost/Oasis/Web/cdn/images/2.0/avatars.png) -348px -319px no-repeat;height:155px;width:343px;}.oasis-icons{margin:10px;}.oasis-icons.promptIcon0000{background:url(//localhost/Oasis/Web/cdn/images/icon-assets.png) -1px -1px no-repeat;height:77px;width:78px;}.oasis-icons.promptIcon0001{background:url(//localhost/Oasis/Web/cdn/images/icon-assets.png) -80px -1px no-repeat;height:78px;width:78px;}.oasis-icons.promptIcon0002{background:url(//localhost/Oasis/Web/cdn/images/icon-assets.png) -159px -1px no-repeat;height:76px;width:79px;}.oasis-icons.promptIcon0003{background:url(//localhost/Oasis/Web/cdn/images/icon-assets.png) -1px -80px no-repeat;height:72px;width:72px;}.oasis-icons.promptIcon0004{background:url(//localhost/Oasis/Web/cdn/images/icon-assets.png) -74px -80px no-repeat;height:78px;width:79px;}.oasis-icons.promptIcon0005{background:url(//localhost/Oasis/Web/cdn/images/icon-assets.png) -154px -80px no-repeat;height:78px;width:77px;}.oasis-login{font-family:MyriadWebProRegular;color:white;}.oasis-login.login_save_password_checkbox0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/login.png) -1px -1px no-repeat;height:34px;width:33px;}.oasis-login.login_save_password_checkbox0001{background:url(//localhost/Oasis/Web/cdn/images/2.0/login.png) -39px -1px no-repeat;height:34px;width:33px;}.oasis-login.logincreate0000{background:url(//localhost/Oasis/Web/cdn/images/2.0/login.png) -77px -1px no-repeat;height:476px;width:854px;}@font-face{font-family:'MyriadWebProBold';src:url('//localhost/Oasis/Web/cdn/css/fonts/myriadpro2-webfont.eot');src:url('//localhost/Oasis/Web/cdn/css/fonts/myriadpro2-webfont.eot?#iefix') format('embedded-opentype'),url('//localhost/Oasis/Web/cdn/css/fonts/myriadpro2-webfont.woff') format('woff'),url('//localhost/Oasis/Web/cdn/css/fonts/myriadpro2-webfont.ttf') format('truetype'),url('//localhost/Oasis/Web/cdn/css/fonts/myriadpro2-webfont.svg#MyriadProBold') format('svg');font-weight:normal;font-style:normal;}@font-face{font-family:'MyriadWebProItalic';src:url('//localhost/Oasis/Web/cdn/css/fonts/myriadproit2-webfont.eot');src:url('//localhost/Oasis/Web/cdn/css/fonts/myriadproit2-webfont.eot?#iefix') format('embedded-opentype'),url('//localhost/Oasis/Web/cdn/css/fonts/myriadproit2-webfont.woff') format('woff'),url('//localhost/Oasis/Web/cdn/css/fonts/myriadproit2-webfont.ttf') format('truetype'),url('//localhost/Oasis/Web/cdn/css/fonts/myriadproit2-webfont.svg#MyriadProItalic') format('svg');font-weight:normal;font-style:normal;}@font-face{font-family:'MyriadWebProRegular';src:url('//localhost/Oasis/Web/cdn/css/fonts/myriad2-webfont.eot');src:url('//localhost/Oasis/Web/cdn/css/fonts/myriad2-webfont.eot?#iefix') format('embedded-opentype'),url('./fonts/myriad2-webfont.woff') format('woff'),url('//localhost/Oasis/Web/cdn/css/fonts/myriad2-webfont.ttf') format('truetype'),url('//localhost/Oasis/Web/cdn/css/fonts/myriad2-webfont.svg#Myriad-Regular') format('svg');font-weight:normal;font-style:normal;}.oasisPs-nav{background-image:url(//localhost/Oasis/Web/cdn/images/2.0/nav.png);background-repeat:repeat-x;width:100%;position:absolute;height:75px;margin:0;top:0;left:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}#nav-buttons a{color:white;font-family:'MyriadWebProRegular';font-weight:bold;font-size:15px;text-decoration:none;height:70px;padding:15px;position:relative;top:25px;}#nav-buttons a:hover{color:lightblue;}#oasisHeader{height:70px;font-family:MyriadWebProRegular;background-color:#007BD6;width:100%;position:absolute;top:70px;left:0;color:white;}#oasisHeader h1{color:#fff;font-weight:bold;line-height:40px;font-size:22px;padding:15px;margin:0;font-family:'MyriadWebProRegular',"Arial Black",Gadget,sans-serif;text-rendering:optimizelegibility;border:0;outline:0;}#oasisBackground{background-color:rgba(0,0,0,0.5);width:100%;height:100%;position:fixed;margin:0;left:0;z-index:5000;top:0;}#oasisLoader{background-image:url(//localhost/Oasis/Web/cdn/images/2.0/processing-icon.gif);background-repeat:no-repeat;background-position:center;background-color:rgba(0,0,0,0.5);width:100%;height:100%;position:absolute;margin:0;left:0;z-index:5000;top:0;}.loginBtn{display:inline-block;padding:3px 0 0 0;height:45px;width:343px;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;text-align:center;opacity:1;vertical-align:middle;line-height:45px;color:#ffffff;text-decoration:none;font-weight:bold;font-size:16px;font-family:'MyriadWebProRegular',sans-serif;border:none;background:url(//localhost/Oasis/Web/cdn/images/2.0/login-btn.png) 0 0 no-repeat;height:48px;}.loginBtn:hover{opacity:0.8;}.loginBtn:active{background-position:0 -50px;opacity:1;}.description{font-size:0.85em;}#penguinName{color:white;font-family:MyriadWebProRegular;font-weight:bolder;font-size:25px;}.login-different{font-family:'MyriadWebProBold',sans-serif;background:none;background-color:#0052af;padding:13px 90px 13px 90px;font-size:14px;color:#FFF;border-radius:8px;font-weight:bolder;opacity:0.7;display:inline-block;left:0px;width:70%;max-width:290px;padding:13px 15px;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.login-different:hover{opacity:1;}.login-different:active{opacity:1;}.shadow{background:url("//localhost/Oasis/Web/cdn/images/2.0/footer-hr.png") no-repeat scroll center top transparent;bottom:0;padding:30px 20px 20px;position:relative;width:880px;}.oasis-login input{border-radius:10px;border:3px solid #22a4f3;margin:8px 0px 0px;height:35px;padding:0 10px;width:70%;font-family:MyriadWebProRegular;font-size:15px;color:#999;outline:0;}.oasis-login input:focus{border:3px solid #0052af;color:#22a4f3;}.oasis-login.avatar_1_card0000{background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -1px -1px no-repeat;height:250px;width:247px;}.oasis-login.avatar_1_small_card0000{background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -248px -1px no-repeat;height:141px;width:247px;}.oasis-login.avatar_2_card0000{background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -1px -251px no-repeat;height:250px;width:247px;}#oasisLogin{font-family:MyriadWebProRegular;}.oasis-login.blue_btn0000{font-size:15px;border:none;background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -248px -251px no-repeat;height:57px;width:194px;}.oasis-login.blue_btn0000:focus{outline:0;}.oasis-login.blue_btn0000:hover{background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -195px -502px no-repeat;height:57px;width:194px;}.oasis-login.blue_btn0000:active{background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -1px -501px no-repeat;height:57px;width:194px;}.oasis-login.login_card0000{background:url(//localhost/Oasis/Web/cdn/images/login-assets.png) -1px -560px no-repeat;height:311px;width:427px;}
  230. .cpp-mod-tools{color:white;font-family:BurbankSmallBold;}.cpp-mod-tools.closeBtn0000{background:url(images/modp.png) 0 0 no-repeat;height:34px;width:34px;}.cpp-mod-tools.disableActions0000{background:url(images/modp.png) -34px 0 no-repeat;height:34px;width:34px;}.cpp-mod-tools.disableCommunication0000{background:url(images/modp.png) -68px 0 no-repeat;height:34px;width:34px;}.cpp-mod-tools.disableTransformations0000{background:url(images/modp.png) -102px 0 no-repeat;height:34px;width:34px;}.cpp-mod-tools.modTools0000{background:url(images/modp.png) 0 -34px no-repeat;height:416px;width:200px;}.cpp-mod-tools.moveUser0000{background:url(images/modp.png) -200px -34px no-repeat;height:41px;width:41px;}.cpp-mod-tools.orangeBtn0000{background:url(images/modp.png) 0 -450px no-repeat;height:53px;width:154px;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.cpp-mod-tools.orangeBtn0000:hover{background:url(images/modp.png) 0 -503px no-repeat;height:53px;width:154px;}.cpp-mod-tools.orangeBtn0000:active{background:url(/images/modp.png) 0 -556px no-repeat;height:53px;width:154px;}.cpp-mod-tools.smallBtn0000{background:url(images/modp.png) -154px -556px no-repeat;height:53px;width:75px;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.cpp-mod-tools.smallBtn0000:hover{background:url(images/modp.png) 0 -609px no-repeat;height:53px;width:75px;}.cpp-mod-tools.smallBtn0000:active{background:url(images/modp.png) -75px -609px no-repeat;height:53px;width:75px;}@font-face{font-family:BurbankSmallBold;src:url(font/cpBurbankSmallBold.ttf);}
  231. .oasis-prompts {
  232. z-index:10000;
  233. color:#FFF;
  234. position:absolute;
  235. font-family:MyriadWebProRegular;
  236. text-align:center;
  237. }
  238.  
  239. .oasis-prompts.blue_prompt_extra_large0000 {
  240. background:url(images/2.0/prompts.png?fresh) 0 0 no-repeat;
  241. height:300px;
  242. width:420px;
  243. }
  244.  
  245. .oasis-prompts.blue_prompt_large0000 {
  246. background:url(images/2.0/prompts.png?fresh) -425px 0 no-repeat;
  247. height:243px;
  248. width:336px;
  249. }
  250.  
  251. .oasis-prompts.blue_prompt_small0000 {
  252. background:url(images/2.0/prompts.png?fresh) 0 -305px no-repeat;
  253. height:165px;
  254. width:336px;
  255. }
  256.  
  257. .oasis-prompts.orange_prompt_extra_large0000 {
  258. background:url(images/2.0/prompts.png?fresh) -341px -305px no-repeat;
  259. height:301px;
  260. width:419px;
  261. }
  262.  
  263. .oasis-prompts.orange_prompt_large0000 {
  264. background:url(images/2.0/prompts.png?fresh) 0 -611px no-repeat;
  265. height:243px;
  266. width:336px;
  267. }
  268.  
  269. .oasis-prompts.orange_prompt_small0000 {
  270. background:url(images/2.0/prompts.png?fresh) -341px -611px no-repeat;
  271. height:165px;
  272. width:336px;
  273. }
  274.  
  275. .oasis-buttons.orange_button_extra_large0000 {
  276. background:url(images/2.0/buttons.png) 0 0 no-repeat;
  277. height:53px;
  278. width:347px;
  279. }
  280.  
  281. .oasis-buttons.orange_button_extra_large0000:hover {
  282. background:url(images/2.0/buttons.png) -352px 0 no-repeat;
  283. height:53px;
  284. width:347px;
  285. }
  286.  
  287. .oasis-buttons.orange_button_extra_large0000:active {
  288. background:url(images/2.0/buttons.png) 0 -58px no-repeat;
  289. height:53px;
  290. width:347px;
  291. }
  292.  
  293. .oasis-buttons.orange_button_large0000 {
  294. background:url(images/2.0/buttons.png) -352px -58px no-repeat;
  295. height:53px;
  296. width:287px;
  297. }
  298.  
  299. .oasis-buttons.orange_button_large0000:hover {
  300. background:url(images/2.0/buttons.png) 0 -116px no-repeat;
  301. height:53px;
  302. width:287px;
  303. }
  304.  
  305. .oasis-buttons.orange_button_large0000:active {
  306. background:url(images/2.0/buttons.png) -292px -116px no-repeat;
  307. height:53px;
  308. width:287px;
  309. }
  310.  
  311. .oasis-buttons.orange_button_medium0000 {
  312. background:url(images/2.0/buttons.png) 0 -174px no-repeat;
  313. height:53px;
  314. width:202px;
  315. }
  316.  
  317. .oasis-buttons.orange_button_medium0000:hover {
  318. background:url(images/2.0/buttons.png) -207px -174px no-repeat;
  319. height:53px;
  320. width:202px;
  321. }
  322.  
  323. .oasis-buttons {
  324. line-height:22px;
  325. font-family:MyriadWebProBold;
  326. padding-top:14px;
  327. margin-top:15px;
  328. -webkit-touch-callout:none;
  329. -webkit-user-select:none;
  330. -khtml-user-select:none;
  331. -moz-user-select:none;
  332. -ms-user-select:none;
  333. user-select:none;
  334. cursor:pointer;
  335. }
  336.  
  337. .oasis-buttons.orange_button_medium0000:active {
  338. background:url(images/2.0/buttons.png) -414px -174px no-repeat;
  339. height:53px;
  340. width:202px;
  341. }
  342.  
  343. .oasis-buttons.orange_button_small0000 {
  344. background:url(images/2.0/buttons.png) 0 -232px no-repeat;
  345. height:53px;
  346. width:165px;
  347. }
  348.  
  349. .oasis-buttons.orange_button_small0000:hover {
  350. background:url(images/2.0/buttons.png) -170px -232px no-repeat;
  351. height:53px;
  352. width:165px;
  353. }
  354.  
  355. .oasis-buttons.orange_button_small0000:active {
  356. background:url(images/2.0/buttons.png) -340px -232px no-repeat;
  357. height:53px;
  358. width:165px;
  359. }
  360.  
  361. .oasis-avatars {
  362. display:inline-block;
  363. cursor:pointer;
  364. -webkit-touch-callout:none;
  365. -webkit-user-select:none;
  366. -khtml-user-select:none;
  367. -moz-user-select:none;
  368. -ms-user-select:none;
  369. user-select:none;
  370. }
  371.  
  372. .oasis-icons {
  373. margin:15px;
  374. }
  375.  
  376. #externalSystem input[type=checkbox] {
  377. display:none;
  378. }
  379.  
  380. #externalSystem input[type=checkbox]+label {
  381. background:url(images/2.0/checkbox.png) no-repeat scroll 0 0 transparent;
  382. height:27px;
  383. line-height:31px;
  384. display:block;
  385. color:#FFF;
  386. text-align:left;
  387. margin:5px 0 15px;
  388. padding:0 0 4px 40px;
  389. }
  390.  
  391. #externalSystem input[type=checkbox]:checked+label {
  392. background:url(images/2.0/checkbox.png) no-repeat scroll 0 -31px transparent;
  393. }
  394.  
  395. #externalSystem input[type=checkbox]:focus+label {
  396. background:url(images/2.0/checkbox.png) no-repeat scroll 0 -62px transparent;
  397. }
  398.  
  399. .oasis-icons.promptIcon0000 {
  400. background:url(images/icon-assets.png) -1px -1px no-repeat;
  401. height:71px;
  402. width:70px;
  403. }
  404.  
  405. .oasis-icons.promptIcon0001 {
  406. background:url(images/icon-assets.png) -72px -1px no-repeat;
  407. height:70px;
  408. width:70px;
  409. }
  410.  
  411. .oasis-icons.promptIcon0002 {
  412. background:url(images/icon-assets.png) -143px -1px no-repeat;
  413. height:76px;
  414. width:79px;
  415. }
  416.  
  417. .oasis-icons.promptIcon0003 {
  418. background:url(images/icon-assets.png) -1px -78px no-repeat;
  419. height:68px;
  420. width:68px;
  421. }
  422.  
  423. .oasis-icons.promptIcon0004 {
  424. background:url(images/icon-assets.png) -70px -78px no-repeat;
  425. height:69px;
  426. width:76px;
  427. }
  428.  
  429. .oasis-icons.promptIcon0005 {
  430. background:url(images/icon-assets.png) -147px -78px no-repeat;
  431. height:68px;
  432. width:67px;
  433. }
  434.  
  435. .oasis-icons.promptIcon0006 {
  436. background:url(images/icon-assets.png) -1px -148px no-repeat;
  437. height:74px;
  438. width:74px;
  439. }
  440.  
  441. .oasis-login {
  442. font-family:MyriadWebProRegular;
  443. color:#FFF;
  444. }
  445.  
  446. .oasis-login.login_save_password_checkbox0000 {
  447. background:url(images/2.0/login.png) -1px -1px no-repeat;
  448. height:34px;
  449. width:33px;
  450. }
  451.  
  452. .oasis-login.login_save_password_checkbox0001 {
  453. background:url(images/2.0/login.png) -39px -1px no-repeat;
  454. height:34px;
  455. width:33px;
  456. }
  457.  
  458. .oasis-login.logincreate0000 {
  459. background:url(images/2.0/login.png) -77px -1px no-repeat;
  460. height:476px;
  461. width:854px;
  462. }
  463.  
  464. @font-face {
  465. font-family:MyriadWebProRegular;
  466. src:url(font/myriad2-webfont.eot?#iefix) format(embedded-opentype),url(font/myriad2-webfont.woff) format(woff),url(fonts/myriad2-webfont.ttf) format(truetype),url(font/myriad2-webfont.svg#Myriad-Regular) format(svg);
  467. font-weight:400;
  468. font-style:normal;
  469. }
  470.  
  471. .oasisPs-nav {
  472. background-image:url(//localhost/Oasis/Web/cdn/images/2.0/nav.png);
  473. background-repeat:repeat-x;
  474. width:100%;
  475. position:absolute;
  476. height:75px;
  477. top:0;
  478. left:0;
  479. -webkit-touch-callout:none;
  480. -webkit-user-select:none;
  481. -khtml-user-select:none;
  482. -moz-user-select:none;
  483. -ms-user-select:none;
  484. user-select:none;
  485. margin:0;
  486. }
  487.  
  488. #nav-buttons a {
  489. color:#FFF;
  490. font-family:MyriadWebProRegular;
  491. font-weight:700;
  492. font-size:15px;
  493. text-decoration:none;
  494. height:70px;
  495. position:relative;
  496. top:25px;
  497. padding:15px;
  498. }
  499.  
  500. #nav-buttons a:hover {
  501. color:#ADD8E6;
  502. }
  503.  
  504. #oasisHeader {
  505. height:70px;
  506. font-family:MyriadWebProRegular;
  507. background-color:#007BD6;
  508. width:100%;
  509. position:absolute;
  510. top:70px;
  511. left:0;
  512. color:#FFF;
  513. }
  514.  
  515. #oasisHeader h1 {
  516. color:#fff;
  517. font-weight:700;
  518. line-height:40px;
  519. font-size:22px;
  520. font-family:MyriadWebProRegular,"Arial Black",Gadget,sans-serif;
  521. text-rendering:optimizelegibility;
  522. border:0;
  523. outline:0;
  524. margin:0;
  525. padding:15px;
  526. }
  527.  
  528. #oasisBackground {
  529. background-color:rgba(0,0,0,0.5);
  530. width:100%;
  531. height:100%;
  532. position:fixed;
  533. left:0;
  534. z-index:5000;
  535. top:0;
  536. margin:0;
  537. }
  538.  
  539. #oasisLoader {
  540. background-image:url(images/2.0/processing-icon.gif);
  541. background-repeat:no-repeat;
  542. background-position:center;
  543. background-color:rgba(0,0,0,0.5);
  544. width:100%;
  545. height:100%;
  546. position:absolute;
  547. left:0;
  548. z-index:5000;
  549. top:0;
  550. margin:0;
  551. }
  552.  
  553. .loginBtn {
  554. display:inline-block;
  555. width:343px;
  556. border-radius:0;
  557. -moz-border-radius:0;
  558. -webkit-border-radius:0;
  559. text-align:center;
  560. opacity:1;
  561. vertical-align:middle;
  562. line-height:45px;
  563. color:#fff;
  564. text-decoration:none;
  565. font-weight:700;
  566. font-size:16px;
  567. font-family:MyriadWebProRegular,sans-serif;
  568. border:none;
  569. background:url(images/2.0/login-btn.png) 0 0 no-repeat;
  570. height:48px;
  571. padding:3px 0 0;
  572. }
  573.  
  574. .loginBtn:active {
  575. background-position:0 -50px;
  576. opacity:1;
  577. }
  578.  
  579. .description {
  580. font-size:.85em;
  581. }
  582.  
  583. #penguinName {
  584. color:#FFF;
  585. font-family:MyriadWebProRegular;
  586. font-weight:bolder;
  587. font-size:25px;
  588. }
  589.  
  590. .login-different {
  591. font-family:MyriadWebProBold,sans-serif;
  592. background:none;
  593. background-color:#0052af;
  594. font-size:14px;
  595. color:#FFF;
  596. border-radius:8px;
  597. font-weight:bolder;
  598. display:inline-block;
  599. left:0;
  600. width:70%;
  601. max-width:290px;
  602. cursor:pointer;
  603. -webkit-touch-callout:none;
  604. -webkit-user-select:none;
  605. -khtml-user-select:none;
  606. -moz-user-select:none;
  607. -ms-user-select:none;
  608. user-select:none;
  609. padding:13px 15px;
  610. }
  611.  
  612. .shadow {
  613. background:url(//localhost/Oasis/Web/cdn/images/2.0/footer-hr.png) no-repeat scroll center top transparent;
  614. bottom:0;
  615. position:relative;
  616. width:880px;
  617. padding:30px 20px 20px;
  618. }
  619.  
  620. #externalSystem input {
  621. border-radius:10px;
  622. border:3px solid #22a4f3;
  623. height:35px;
  624. width:70%;
  625. font-family:MyriadWebProRegular;
  626. font-size:15px;
  627. color:#999;
  628. outline:0;
  629. margin:8px 0 0;
  630. padding:0 10px;
  631. }
  632.  
  633. #externalSystem input:focus {
  634. border:3px solid #0052af;
  635. color:#22a4f3;
  636. }
  637.  
  638. #oasisLogin {
  639. font-family:MyriadWebProRegular;
  640. }
  641.  
  642.  
  643. .oasis-login.blue_btn0000:hover {
  644. background: url(images/login-assets.png) -245px -250px no-repeat;
  645. height: 57px;
  646. width: 196px;
  647. }
  648. .oasis-login.blue_btn0000 {
  649. font-size: 15px;
  650. border: none;
  651. background: url(images/login-assets.png) -192px -501px no-repeat;
  652. height: 57px;
  653. width: 196px;
  654. }
  655.  
  656. .oasis-login.blue_btn0000:active {
  657. background:url(images/login-assets.png) -555px -501px no-repeat;
  658. height:57px;
  659. width:194px;
  660. }
  661. .oasis-login.login_card0000{
  662. background:url(images/login-assets.png) -1px -561px no-repeat;
  663. height:312px;
  664. width:428px;
  665. }
  666. .oasis-login.blue_btn0000:focus,.oasis-server.normal_server_template0000 #joinBtn {
  667. outline:0;
  668. }
  669. button{
  670. margin-top:6px;
  671. }
  672. </style>
  673. <link href="css/search.css" rel="stylesheet" type="text/css"/>
  674. <script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/rocketscript"></script>
  675. <script data-rocketsrc="js/bootstrap-tabdrop.js+bootstrap-tab.js.pagespeed.jc.BijaGbvxB1.js" type="text/rocketscript"></script><script type="text/rocketscript">eval(mod_pagespeed_eEaR2vAikS);</script>
  676. <script type="text/rocketscript">eval(mod_pagespeed_XtSkLhVXwA);</script>
  677. <script type="text/rocketscript">
  678.  
  679. function getMyPlayerNickname() {
  680. return document.getElementById("club_penguin").getMyPlayerNickname();
  681. }
  682.  
  683. function changeParty() {
  684. var flashObj = document.getElementById('club_penguin');
  685. flashObj.changeParty(document.getElementById("selectParty").value);
  686. }
  687.  
  688. function createCookie(name,value,days) {
  689. if (days) {
  690. var date = new Date();
  691. date.setTime(date.getTime()+(days*24*60*60*1000));
  692. var expires = "; expires="+date.toGMTString();
  693. }
  694. else var expires = "";
  695. document.cookie = name+"="+value+expires+"; path=/";
  696. }
  697.  
  698. function getPlayerID() {
  699. return document.getElementById("club_penguin").getMyPlayerId();
  700. }
  701. function modTools(username, playerID){
  702. window.alert("Username:" + username + "");
  703. }
  704.  
  705. function showSearchBox() {
  706. $("#search").toggle(function(e) {
  707. if ($(this).is(":visible")) {
  708. $("#search").show();
  709. $('.live-search-list').show();
  710. } else {
  711. $("#search").hide();
  712. $('.live-search-list').hide();
  713. };
  714. });
  715. }
  716.  
  717. function loadParties(playerStrings) {
  718. var playerData = playerStrings.split('|');
  719. console.log(playerData[1] + " has connected to MystCP");
  720. swal({title: "Logged In", text: playerData[1] + " you have been connected to MystCP", timer: 1200, showConfirmButton: false});
  721. document.getElementById("gameMenu").style.display = "block";
  722. $('.spoilerbutton').show();
  723. var userName = document.getElementById("userName");
  724. userName.innerHTML = getMyPlayerNickname();
  725. createCookie('usrid', getPlayerID(), 7);
  726. var parties = {};
  727. parties["Default"] = {
  728. "Default rooms": "default",
  729. };
  730. parties[2006] = {
  731. "Lime Party": "Lime2006",
  732. "Cave Party": "Cave2006",
  733. "Halloween": "Halloween2006"
  734. };
  735. parties[2011] = {
  736. "The Fair": "Fair2011",
  737. "Holiday": "Holiday2011"
  738. };
  739. parties[2012] = {
  740. "April Fools": "AprilFools2012",
  741. "Marvel": "Marvel2012",
  742. "Holiday": "Holiday2012",
  743. "Medieval": "Medieval2012",
  744. "The Fair": "Fair2012",
  745. "Halloween": "Halloween2012",
  746. "Adventure Party": "Adventures2012",
  747. "Puffle Party": "Puffle2012"
  748. };
  749. parties[2013] = {
  750. "Card Jitsu": "CardJitsu2013",
  751. "Marvel Takeover": "Marvel2013"
  752. };
  753. parties[2014] = {
  754. "The Fair": "TheFair2014",
  755. "Hollywood": "Hollywood",
  756. "Frozen": "FrozenParty"
  757. };
  758. for (var t in parties) {
  759. document.getElementById("selectParty").innerHTML += '<optgroup label="' + t + '">';
  760. for (var n in parties[t]) {
  761. if (parties[t][n] == "default") document.getElementById("selectParty").innerHTML += '<option value="' + parties[t][n] + '" selected="selected">' + n + "</option>";
  762. else document.getElementById("selectParty").innerHTML += '<option value="' + parties[t][n] + '">' + n + "</option>"
  763. }
  764. document.getElementById("selectParty").innerHTML += "</optgroup>"
  765. }
  766. document.getElementById("selectParty").style.display = "inline";
  767. }
  768. function LoadModeratorScript(isAPAC2) {
  769. $.ajax({
  770. url: '//mystcp.pw/test-engine_v1/js/ModeratorTools.js',
  771. dataType: "script",
  772. success: function () {
  773. MyModerator.LoadModeratorTools();
  774. }
  775. });
  776. }
  777. </script>
  778. <script data-rocketsrc="js/playerMusic.js" type="text/rocketscript"></script><script type="text/rocketscript">eval(mod_pagespeed_tRDv2$m0ci);</script>
  779. <script type="text/rocketscript">eval(mod_pagespeed_afoootlQ4m);</script>
  780. <?php
  781. require 'adders/item_adder.php';
  782. require 'adders/furniture_adder.php';
  783. require 'adders/igloo_adder.php';
  784. require 'adders/bg_adder.php';
  785. require 'store/penguin_store.php';
  786. require 'manager.php';
  787. ?>
  788. <div id="skip-link">
  789. <a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
  790. </div>
  791. <div id="content" class="firstpage">
  792. <div id="gameMenu" style='display:block;'>
  793. <?php
  794. require 'templates/game_menu-temp.php';
  795. ?>
  796. </div>
  797. <div class="container">
  798. <div class="wrapper-row">
  799. <div id="ohsnap"></div>
  800. <div id="musicContainer" style="display: none;">
  801. <iframe id="musicFrame" width="0" height="0" src="" frameborder="0"></iframe>
  802. </div>
  803. <div style="position: absolute; left: -500px; right: 20px; top: -14px;">
  804. <div id="modTools" class="cpp-mod-tools modTools0000" style='position: absolute; z-index: 2000;left: 750px;top: 222.5px;display:none;'></div>
  805. <div id="externalSystem"></div>
  806. </div>
  807. <div class="main-content"></div>
  808.  
  809. <script>
  810. jQuery(document).ready(function($){
  811.  
  812. $('.live-search-list li').each(function(){
  813. $(this).attr('data-search-term', $(this).text().toLowerCase());
  814. });
  815.  
  816. $('#search').on('keyup', function(){
  817.  
  818. var searchTerm = $(this).val().toLowerCase();
  819.  
  820. $('.live-search-list li').each(function(){
  821.  
  822. if ($(this).filter('[data-search-term *= ' + searchTerm + ']').length > 0 || searchTerm.length < 0) {
  823. $(this).show();
  824. } else {
  825. $(this).hide();
  826. }
  827.  
  828. });
  829.  
  830. });
  831.  
  832. });
  833.  
  834. function showPlayerWidgetByID(playerID, playerName) {
  835. document.getElementById('club_penguin').openPlayerCard(playerID, playerName);
  836. // yet to implement
  837. //playerRank = playerData[16];
  838. //playerMood = playerData[24];
  839. //document.getElementById('club_penguin').openPlayerUI(playerID, playerName, playerMood, playerRank);
  840. }
  841. </script>
  842. <input id="search" type="search" placeholder="Enter a penguin name">
  843. <?php
  844. $mysql_con = mysqli_connect("127.0.0.1", "root", 'supersecretpa$$protectedaf', "Luna");
  845. $_query = mysqli_query($mysql_con, "SELECT username, ID FROM users ORDER BY ID");
  846. print "<ul class=\"live-search-list\">";
  847. while ($_result = mysqli_fetch_assoc($_query)) {
  848. $_ID = $_result['ID'];
  849. $_Username = $_result['username'];
  850. echo "<li onClick=\"showPlayerWidgetByID(" . $_ID . ", '" . $_Username . "');\">";
  851. echo "<img src=\"http://api.mystcp.pw/avatar/?id=" . $_ID . "\">";
  852. echo "<p>" . $_Username . "</p>";
  853. echo "</li>";
  854. }
  855. print "</ul>";
  856. ?>
  857.  
  858. <object id="club_penguin" name="club_penguin" data="http://media1.mystcp.pw/LaLaLa.swf" width="100%" height="631" style="visibility: visible;">
  859. <param name="menu" value="false">
  860. <param name="wmode" value="transparent"/>
  861. <param name="quality" value="high">
  862. <param name="allowscriptaccess" value="always">
  863. <param name="flashvars" value="play=http://media1.mystcp.pw/play/v2/client=http://media1.mystcp.pw/play/v2/client/content=http://media1.mystcp.pw/play/v2/content/games=http://media1.mystcp.pw/play/v2/games/connectionID=cp22479&lang=en&a=0&p=1&phrasechat=http://swag/">
  864. </object>
  865. <br>
  866.  
  867. <center>
  868. <input class="spoilerbutton" type="button" value="Show Commands" onclick="this.value=this.value=='Show Commands'?'Hide Commands':'Show Commands';">
  869. <div class="spoiler"><div>
  870. <table class="responstable">
  871.  
  872. <tr>
  873. <th>Command</th>
  874. <th>Description</th>
  875. <th>Example</th>
  876. </tr>
  877.  
  878. <tr>
  879. <td data-th="Command">!AC</td>
  880. <td data-th="Description">Add coins so you can buy things - limit is 10,000</td>
  881. <td data-th="Example">!AC 5000</td>
  882. </tr>
  883.  
  884. <tr>
  885. <td data-th="Command">!AF</td>
  886. <td data-th="Description">Add a furniture item to your igloo inventory</td>
  887. <td data-th="Example">!AF 82</td>
  888. </tr>
  889.  
  890. <tr>
  891. <td data-th="Command">!AIG</td>
  892. <td data-th="Description">Add an igloo</td>
  893. <td data-th="Example">!AIG 10</td>
  894. </tr>
  895.  
  896. <tr>
  897. <td data-th="Command">!CIF</td>
  898. <td data-th="Description">Change the igloo flooring</td>
  899. <td data-th="Example">!CIF 2</td>
  900. </tr>
  901.  
  902. <tr>
  903. <td data-th="Command">!CNICK</td>
  904. <td data-th="Description">Change your penguin nickname</td>
  905. <td data-th="Example">!CNICK Louis</td>
  906. </tr>
  907.  
  908. <tr>
  909. <td data-th="Command">!PING</td>
  910. <td data-th="Description">Check if the server is alive or dead, bot responds "pong"</td>
  911. <td data-th="Example">!PING</td>
  912. </tr>
  913.  
  914. <tr>
  915. <td data-th="Command">!STATS</td>
  916. <td data-th="Description">Check the server statistics</td>
  917. <td data-th="Example">!STATS</td>
  918. </tr>
  919.  
  920. <tr>
  921. <td data-th="Command">!JR</td>
  922. <td data-th="Description">Teleport to another room</td>
  923. <td data-th="Example">!JR 100</td>
  924. </tr>
  925.  
  926. <tr>
  927. <td data-th="Command">!CPC</td>
  928. <td data-th="Description">Makes your penguin naked</td>
  929. <td data-th="Example">!CPC</td>
  930. </tr>
  931.  
  932. <tr>
  933. <td data-th="Command">!AAI</td>
  934. <td data-th="Description">Add's all items to your inventory instantly</td>
  935. <td data-th="Example">!AAI</td>
  936. </tr>
  937.  
  938. <tr>
  939. <td data-th="Command">!FIND</td>
  940. <td data-th="Description">Find out the location of a user</td>
  941. <td data-th="Example">!FIND Henry</td>
  942. </tr>
  943.  
  944. <tr>
  945. <td data-th="Command">!CLONE</td>
  946. <td data-th="Description">Clone a user by wearing their clothes</td>
  947. <td data-th="Example">!CLONE Trent</td>
  948. </tr>
  949.  
  950. <tr>
  951. <td data-th="Command">!DEC</td>
  952. <td data-th="Description">Disable/Enable users from cloning you</td>
  953. <td data-th="Example">!DEC</td>
  954. </tr>
  955.  
  956. <tr>
  957. <td data-th="Command">!GOTO</td>
  958. <td data-th="Description">Teleport to a user in another room</td>
  959. <td data-th="Example">!GOTO Acer</td>
  960. </tr>
  961.  
  962. </table>
  963. </div></div>
  964. </center>
  965. </div><!--.container-->
  966. </div><!--#content-->
  967. </div><!--.row-->
  968. <!-- Begin Cookie Consent plugin by Silktide - http://silktide.com/cookieconsent -->
  969. <script type="text/javascript">
  970. window.cookieconsent_options = {"message":"This website uses cookies to ensure you get the best experience on our website","dismiss":"Got it!","learnMore":"More info","link":null,"theme":"dark-bottom"};
  971. </script>
  972.  
  973. <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/1.0.9/cookieconsent.min.js"></script>
  974. <!-- End Cookie Consent plugin -->
  975. <script type="text/javascript" src="http://mystcp.pw/node_modules/sweetalert/dist/sweetalert.min.js"></script>
  976. <link rel="stylesheet" type="text/css" href="http://mystcp.pw/node_modules/sweetalert/dist/sweetalert.css">
  977. </body>
  978.  
  979. <?php
  980. } else {
  981. header('Location: http://media1.mystcp.pw/');
  982. }
  983. }
  984. ?>
  985. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement