summaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
Diffstat (limited to 'discord')
-rw-r--r--discord/.htaccess1
-rw-r--r--discord/psycho/assets/audio.mp3bin0 -> 2939644 bytes
-rw-r--r--discord/psycho/assets/favicon.jpgbin0 -> 110054 bytes
-rw-r--r--discord/psycho/assets/silence.mp3bin0 -> 36710 bytes
-rw-r--r--discord/psycho/css/main.css60
-rw-r--r--discord/psycho/index.php67
-rw-r--r--discord/psycho/js/main.js12
-rw-r--r--discord/psycho/rules/index.html145
8 files changed, 285 insertions, 0 deletions
diff --git a/discord/.htaccess b/discord/.htaccess
new file mode 100644
index 0000000..45552cb
--- /dev/null
+++ b/discord/.htaccess
@@ -0,0 +1 @@
+Options -Indexes \ No newline at end of file
diff --git a/discord/psycho/assets/audio.mp3 b/discord/psycho/assets/audio.mp3
new file mode 100644
index 0000000..d5ab8e6
--- /dev/null
+++ b/discord/psycho/assets/audio.mp3
Binary files differ
diff --git a/discord/psycho/assets/favicon.jpg b/discord/psycho/assets/favicon.jpg
new file mode 100644
index 0000000..247c101
--- /dev/null
+++ b/discord/psycho/assets/favicon.jpg
Binary files differ
diff --git a/discord/psycho/assets/silence.mp3 b/discord/psycho/assets/silence.mp3
new file mode 100644
index 0000000..16de7c3
--- /dev/null
+++ b/discord/psycho/assets/silence.mp3
Binary files differ
diff --git a/discord/psycho/css/main.css b/discord/psycho/css/main.css
new file mode 100644
index 0000000..256f117
--- /dev/null
+++ b/discord/psycho/css/main.css
@@ -0,0 +1,60 @@
+html {
+ background: black;
+}
+
+.main {
+ color: #fff;
+ font-family: Helvetica,"Helvetica Neue",Arial,"Lucida Grande", sans-serif;
+ text-align: center;
+ z-index: 1;
+ margin: auto;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+}
+
+a:hover {
+ letter-spacing: 2px;
+ transition: .5s;
+}
+
+#bld:hover {
+ letter-spacing: 4px;
+}
+
+a {
+ transition: .5s;
+ text-decoration: none;
+ color: #fff;
+ box-shadow:
+ 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
+ 0 6.7px 5.3px rgba(0, 0, 0, 0.048),
+ 0 12.5px 10px rgba(0, 0, 0, 0.06),
+ 0 22.3px 17.9px rgba(0, 0, 0, 0.072),
+ 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
+ 0 100px 80px rgba(0, 0, 0, 0.12)
+;
+}
+
+#vid {
+ position: fixed;
+ min-width: 103%;
+ min-height: 103%;
+ opacity: 0.5;
+ width: auto;
+ height: auto;
+ z-index: -100;
+ transform: translateX(-50%) translateY(-50%);
+ background-size: cover;
+ overflow: hidden;
+ -webkit-filter: blur(15px);
+ -moz-filter: blur(15px);
+ -o-filter: blur(15px);
+ -ms-filter: blur(15px);
+ filter: blur(15px);
+ background: rgba(7, 9, 21, .5);
+ filter: brightness(42.5%);
+ top: 50%;
+ left: 50%
+} \ No newline at end of file
diff --git a/discord/psycho/index.php b/discord/psycho/index.php
new file mode 100644
index 0000000..bfe7ce5
--- /dev/null
+++ b/discord/psycho/index.php
@@ -0,0 +1,67 @@
+<?php
+ // Do make a visitors.html file and set permission to 0777
+
+ $ip = $_SERVER['REMOTE_ADDR'];
+ $browser = $_SERVER['HTTP_USER_AGENT'];
+ date_default_timezone_set('America/Los_Angeles');
+ $dateTime = date('m/d/Y G:i:s');
+ $file = "/visitors/index.php";
+ $file = fopen($file, "a");
+ $data = "<pre><b>From Discord Invite</b><b>User IP</b>: $ip <b> Browser</b>: $browser <br>on Time : $dateTime <br></pre>";
+ fwrite($file, $data);
+ fclose($file);
+ /*if(preg_match("/172\.68\.174\.([0-9]{1,2}|1[0-9]{1,2}|2[0-4][0-9]|25[0-5])")) {
+ echo "<h1>Hi n0.0b :)</h1>";
+ }*/
+?>
+<!DOCTYPE html>
+<html lang="en">
+
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>Psycho (い違フ)</title>
+ <link href="/discord/psycho/assets/favicon.jpg" rel="icon" type="image/jpg">
+ <!-- <link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon"> -->
+ <!-- CSS Links -->
+ <link rel="stylesheet" href="/discord/psycho/css/main.css">
+ <link rel="stylesheet" href="/css/no-text-highlighting.css">
+ <!-- External Libraries -->
+ <script src="https://code.jquery.com/jquery-3.1.1.js"></script>
+ <!-- Invisible Script -->
+ <script src="/js/hide-context-menu.js"></script>
+ <script src="/discord/psycho/js/main.js"></script>
+ </head>
+
+ <body>
+ <!-- Visable Script -->
+ <embed src="/discord/psycho/assets/audio.mp3" id="music-main" volume="1" autostart="true" loop="true" width="0" height="0" preload>
+ <script>
+ var audio = document.currentScript.parentElement;
+ audio.volume = 0.333;
+ </script>
+ </embed>
+ <video playsinline autoplay loop muted id="vid">
+ <source src="//cdn-b-east.streamable.com/video/mp4/5w5b2.mp4?token=r5R2Y_aRJ5VXc7QD4WUn7A&expires=1584962160" type="video/mp4"></source>
+ <script>
+ var video = document.currentScript.parentElement;
+ video.volume = 0.333;
+ </script>
+ </video>
+
+ <div class="main">
+ <div class="txt">
+ <a id="bld" onclick="location.reload();" style="font-weight: 700; font-size: 40px;" href="#">Psycho (い違フ)</a>
+
+ <div class="light" style="font-weight: 500;">
+ <a href="https://discord.gg/WT34MSu">/discord</a><br>
+ </div>
+ </div>
+
+ </div>
+ <p style="position: absolute; top: -5px; left: 5px; font-size: 10px; color: white; font-family: Arial">if browser does not support the audio element, please click Psycho (い違フ) or <a onclick="location.reload();" href="#"><u>here</u></a><p>
+
+ </body>
+
+</html>
diff --git a/discord/psycho/js/main.js b/discord/psycho/js/main.js
new file mode 100644
index 0000000..49ec780
--- /dev/null
+++ b/discord/psycho/js/main.js
@@ -0,0 +1,12 @@
+$(window).on('keydown', function () {
+ if (event.keyCode == 123)
+ return false;
+ else if (event.ctrlKey && event.shiftKey && event.keyCode == 73)
+ return false;
+ else if (event.ctrlKey && event.keyCode == 73)
+ return false;
+ else if (event.ctrlKey && event.shiftKey && event.keyCode == 74)
+ return false;
+ else if (event.ctrlKey && event.keyCode == 74)
+ return false;
+}); \ No newline at end of file
diff --git a/discord/psycho/rules/index.html b/discord/psycho/rules/index.html
new file mode 100644
index 0000000..6c1636c
--- /dev/null
+++ b/discord/psycho/rules/index.html
@@ -0,0 +1,145 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <meta name="theme-color" content="#FFF">
+ <title>Psycho (い違フ) Rules</title>
+ <!-- Site metadata -->
+ <meta name="description" content="Psycho (い違フ) Rules">
+ <meta property="og:description" content="Psycho (い違フ) Rules">
+ <meta property="og:title" content="Psycho (い違フ) Rules">
+ <meta property="twitter:card" content="summary">
+ <meta property="twitter:site" content="@9inny">
+ <meta property="og:image" content="">
+ <meta property="og:url" content="https://cyne.cf/discord/psycho/rules">
+ <!-- Favicons -->
+ <link rel="apple-touch-icon" sizes="128x128" href="/favicon.jpg">
+ <link rel="icon" type="image/jpg" href="/favicon.jpg" sizes="128x128">
+ <link rel="canonical" href="https://cyne.cf/discord/psycho/rules">
+ <link rel="author" href="humans.txt" />
+ <!-- Invisible Scripts -->
+ <script src="/js/hide-context-menu.js"></script>
+ <!-- Schema.org Stuff -->
+ <script type="application/ld+json">
+ {
+ "name": "s1nical",
+ "alternateName": "s1n",
+ "description": "Psycho (い違フ) Rules",
+ "headline": "Psycho (い違フ) Rules",
+ "url": "https://cyne.cf/discord/psycho/rules",
+ "image": "",
+ "sameAs": [
+ "https://twitter.com/9inny",
+ "https://github.com/8cy",
+ "https://www.reddit.com/user/s1nical/"
+ ],
+ "publisher": {
+ "@type": "Organization",
+ "logo": {
+ "@type": "ImageObject",
+ "url": ""
+ }
+ },
+ "@type": "WebSite",
+ "@context": "http://schema.org"
+ }
+ </script>
+ </head>
+ <body>
+ <main style="word-wrap: break-word; white-space: pre-wrap; width: 70%">
+ <u>Server Rules:</u>
+
+ <b>1.0 - General server rules</b>
+
+ <code>
+ - 1.0a. No blank nicknames.
+ - 1.0b. No inappropriate nicknames.
+ - 1.0c. No sexually explicit nicknames.
+ - 1.0d. No offensive nicknames.
+ - 1.0e. No nicknames with unusual or unreadable Unicode.
+ - 1.0f. No blank profile pictures.
+ - 1.0g. No inappropriate profile pictures.
+ - 1.0h. No sexually explicit profile pictures.
+ - 1.0i. No offensive profile pictures.
+ - 1.0j. Moderators reserve the right to change nicknames.
+ - 1.0k. Moderators reserve the right to use their own discretion regardless of any rule.
+ - 1.0l. No exploiting loopholes in the rules (please report them).
+ - 1.0m. No inviting unofficial bots.
+ - 1.0n. No bugs, exploits, glitches, hacks, bugs, etc.
+ </code>
+
+ <b>2.0 - Text chat rules</b>
+
+ <code>
+ - 2.0a. No questioning the mods.
+ - 2.0b. No @mentioning the mods.
+ - 2.0c. No asking to be granted roles/moderator roles.
+ - 2.0d. @mention the moderators for support.
+ - 2.0e. Contact the moderators under` #help `for support.
+ - 2.0f. No` @everyone/@here `mentioning without permission.
+ - 2.0g. No @mentioning spam.
+ - 2.0h. No NSFW content.
+ - 2.0i. No illegal content.
+ - 2.0j. No publishing of personal information (including real names, addresses, emails, passwords, bank account and credit card information, etc.).
+ - 2.0k. No personal attacks.
+ - 2.0l. No witch hunting.
+ - 2.0m. No harassment.
+ - 2.0n. No sexism.
+ - 2.0o. No racism.
+ - 2.0p. No hate speech.
+ - 2.0q. No sexual discussions.
+ - 2.0r. No flame wars.
+ - 2.0s. Agree to disagree.
+ - 2.0t. No spamming.
+ - 2.0u. No excessive messaging (breaking up an idea in many posts instead of writing all out in just one post).
+ - 2.0v. No walls of text (either in separate posts or as a single post).
+ - 2.0w. Keep conversations in English.
+ - 2.0x. Use` #off-topic `for conversations in another/other language(s).
+ - 2.0y. Moderators reserve the right to delete any post.
+ - 2.0z. Moderators reserve the right to edit any post.
+ - 2.1a. No advertisement without permission.
+ - 2.1b. No linking to other servers.
+ - 2.1c. Bot commands only under` #bot-commands`.
+ - 2.1d. No channel hopping.
+ - 2.1e. No off-topic/use the right text channel for the topic you wish to discuss.
+ </code>
+
+ </b>3.0 - Voice chat rules</b>
+
+ <code>
+ - 3.0a. No voice chat channel hopping.
+ - 3.0b. No annoying, loud or high pitch noises.
+ - 3.0c. Reduce the amount of background noise, if possible.
+ - 3.0d. Moderators reserve the right to disconnect you from a voice channel if your sound quality is poor.
+ - 3.0e. Moderators reserve the right to disconnect, mute, deafen, or move members to and from voice channels.
+ </code>
+
+ <b>4.0 - Bot specific rules</b>
+
+ <code>
+ - 4.0a. No command spam.
+ - 4.0b. No macros.
+ - 4.0c. No hacks.
+ - 4.0d. No adding/changing/removing commands.
+ </code>
+
+ <u>Policies:</u>
+
+ <b>Staff's Word is Final</b>
+ <code>
+ If you have any issues with a verdict or a punishment given out by a staff member you need to accept it and then speak to a higher up staff member about it. You may also appeal your punishment or report the staff member in question to a higher up staff member.
+ </code>
+
+ <b>Loopholing</b>
+ <code>
+ The rules are in place in order to ensure a fun and safe environment on the servers and as such are not here for anyone to scrutinize or attempt to loophole. The staff have the final word on the rules, if you feel like a staff member is abusing you may submit a report against them.
+ </code>
+
+ <b>Server Agreement</b>
+ <code>
+ BY INTERACTING WITH THIS SERVER YOU AGREE TO THE DISCORD RULES & GUIDELINES` (https://dis.gd/guidelines) `AND UNDERSTAND THAT IF YOU FAIL TO FOLLOW THESE GUIDELINES (and/or) THE SERVER RULES THAT YOU MAY BE PUNISHED ACCORDINGLY. PUNISHMENTS ARE DETERMINED BY THE STAFF MEMBERS ON THE SERVER, BUT MAY BE OVERRULED IF THE PUNISHMENT IS DEEMED INAPPROPRIATE OR FALSE. YOU ACCEPT THAT ALTHOUGH THE RULES MAY NOT DIRECTLY PROHIBIT AN ACTION THAT THE ACTION MAY STILL BE PUNISHABLE IF A STAFF MEMBER DETERMINES THE BEHAVIOUR OR ACTIONS YOU PERPETRATE TO BE NEGATIVELY IMPACTING THE SERVER TO THE POINT WHERE IT IS HARMING MEMBERS OF THE SERVER AND/OR THE SERVER ITSELF.
+ </code>
+ </main>
+ </body>