├── .github └── FUNDING.yml ├── 404.html ├── LICENSE ├── README.md ├── assets ├── disconnect.ico ├── disconnect.png ├── entertainment.png ├── moderation.png ├── music.png └── roleplay.png ├── commands.html ├── docs.html ├── index.html ├── invite.html ├── premium.html ├── robots.txt ├── sitemap.xml ├── styles ├── commands.css ├── common.css ├── docs.css ├── index.css └── utilities.css └── support.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: disconnectbot 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: paypal.me/cytechyt 13 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Page Not Found 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 30 | 32 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 60 | 61 | 62 |
63 |
64 |
65 |

404

66 |

I am sorry but I can not find the page you are looking for.

67 |
68 | Go Back Home 69 |
70 |
71 |
72 |
73 | 74 | 75 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2021 DevCytech 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OldWebsite 2 | This is the Legacy Website for Disconnect the Discord Bot. 3 | 4 | ## View the old website here! 5 | https://disconnectdiscordbot.github.io/OldWebsite/ 6 | -------------------------------------------------------------------------------- /assets/disconnect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisconnectDiscordBot/OldWebsite/17e830a63b5d381cce0d712d77d51cce7dfed43c/assets/disconnect.ico -------------------------------------------------------------------------------- /assets/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisconnectDiscordBot/OldWebsite/17e830a63b5d381cce0d712d77d51cce7dfed43c/assets/disconnect.png -------------------------------------------------------------------------------- /assets/entertainment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisconnectDiscordBot/OldWebsite/17e830a63b5d381cce0d712d77d51cce7dfed43c/assets/entertainment.png -------------------------------------------------------------------------------- /assets/moderation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisconnectDiscordBot/OldWebsite/17e830a63b5d381cce0d712d77d51cce7dfed43c/assets/moderation.png -------------------------------------------------------------------------------- /assets/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisconnectDiscordBot/OldWebsite/17e830a63b5d381cce0d712d77d51cce7dfed43c/assets/music.png -------------------------------------------------------------------------------- /assets/roleplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisconnectDiscordBot/OldWebsite/17e830a63b5d381cce0d712d77d51cce7dfed43c/assets/roleplay.png -------------------------------------------------------------------------------- /commands.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Disconnect - Commands 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 29 | 31 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 59 | 60 | 61 |
62 |
63 |
64 |

COMMAND PREFIX

65 |
66 |

The default prefix is

67 |
 ! 
68 |
69 |
70 |

To find a guilds prefix mention

71 |
 @Disconnect#2622 
72 |
73 |
74 |

Command Example:

75 |
!help
76 |
77 |
78 |
79 |

COMMAND SYNTAX

80 |

(Please do not include these when typing commands)

81 | 82 |
83 |
 [] 
84 |

- Optional paramater

85 |
86 |
87 |
 <> 
88 |

- Required parameter

89 |
90 |
91 |
 < thing1 || thing2 > 
92 |

- Select an option inside

93 |
94 |
95 |
96 |
97 | 98 | 99 |
100 |
101 |
102 |
103 | 104 | 105 |
106 |
107 | 108 | 109 |
110 |

Get some random advice from Disconnect.

111 |
112 |
113 |
114 | 115 | 116 |
117 |

Flip a coin. Will it land on heads? or tails?

118 |
119 |

Usage:

120 |
coin-flip
121 |
122 |
123 |
124 |
125 | 126 | 127 |
128 |

Want to hear a punny dad joke? I got a few you might like!

129 |
130 |

Usage:

131 |
dad-joke
132 |
133 |
134 |

Aliases:

135 |
dad
136 |
137 |
138 |
139 |
140 | 141 | 142 |
143 |

Fun Fact: Did you know: it is illegal to eat oranges while bathing in California! 144 | Wait, doesn't Discord follows California law!? *drops orange* ! 145 |

146 |
147 |

Usage:

148 |
fact
149 |
150 |
151 |

Aliases:

152 |
fun-fact
153 |
154 |
155 |
156 |
157 | 158 | 159 |
160 |

Get some funny memes off of Reddit!

161 |
162 |
163 |
164 | 165 | 166 |
167 |

Rock! Paper! Scissors! Says..! SHOOT!

168 |
169 |

Usage:

170 |
rock-paper-scissors [rock || paper || scissors]
171 |
172 |
173 |

Example:

174 |
rock-paper-scissors rock
175 |
176 |
177 |

Aliases:

178 |
r-p-s
179 |
180 |
181 |
182 |
183 | 184 | 185 |
186 |

Roll a pair of dice and get your results.

187 |
188 |

Usage:

189 |
roll-dice
190 |
191 |
192 |

Aliases:

193 |
roll
194 |
195 |
196 |
197 |
198 | 199 | 200 |
201 |

1/6 Chance to survive? Will you spin the barrel?

202 |
203 |

Usage:

204 |
russian-roulette
205 |
206 |
207 |
208 |
209 | 210 | 211 |
212 |

What do you think about in the shower?

213 |
214 |

Usage:

215 |
shower-thought
216 |
217 |
218 |

Aliases:

219 |
shower
220 |
221 |
222 |
223 |
224 | 225 | 226 |
227 |

Get three in a row to win!

228 |
229 |
230 |
231 | 232 | 233 |
234 |

What does the 8-ball predict?

235 |
236 |

Usage:

237 |
8-ball < question >
238 |
239 |
240 |

Example:

241 |
Oh, Magic 8-ball! Will Disconnect continue to grow?
242 |
243 |
244 |

Aliases:

245 |
super-8-ball
246 |
247 |
248 |
249 |
250 |
251 |
252 | 253 | 254 |
255 |
256 | 257 | 258 |
259 |

Add a filter your queue of songs.

260 |
261 |

Usage:

262 |
filter [ filter ]
263 |
264 |
265 |

Example:

266 |
filter bassboost
267 |
268 |
269 |

Aliases:

270 |
filters
271 |
272 |
273 |
274 |
275 | 276 | 277 |
278 |

Get information about the currently playing song.

279 |
280 |

Aliases:

281 |
np
282 |
283 |
284 |
285 |
286 | 287 | 288 |
289 |

Stop the queue and leave the voice channel.

290 |
291 |
292 |
293 | 294 | 295 |
296 |

Resume a paused track.

297 |
298 |
299 |
300 | 301 | 302 |
303 |

Pause the current track.

304 |
305 |
306 |
307 | 308 | 309 |
310 |

Play a song via a link or name. Currently supporting: YouTube, Spotify, Soundcloud, 311 | and Discord MP3's

312 |
313 |

Usage:

314 |
play < song url || name >
315 |
316 |
317 |

Example:

318 |
play Martin Garrix Animals
319 |
320 |
321 |

Aliases:

322 |
p
323 |
324 |
325 |
326 |
327 | 328 | 329 |
330 |

Play a playlsit via a link or name. Currently supporting: Youtube and Spotify

331 |
332 |

Usage:

333 |
play-playlist < playlist url || name >
334 |
335 |
336 |

Example:

337 |
play-playlist EDM
338 |
339 |
340 |

Aliases:

341 |
pp
342 |
343 |
344 |
345 |
346 | 347 | 348 |
349 |

Skip the rest of the current song.

350 |
351 |
352 |
353 | 354 | 355 |
356 |

Loop the queue.

357 |
358 |
359 |
360 | 361 | 362 |
363 |

Check the current song and the next 10 playing.

364 |
365 |
366 |
367 |
368 |
369 | 370 | 371 |
372 |
373 | 374 | 375 |
376 |

Search YouTube for a YouTube channel and get it's info.

377 |
378 |

Usage:

379 |
youtube-channel [channel name]
380 |
381 |
382 |

Example:

383 |
youtube-channel Cytech
384 |
385 |
386 |

Aliases:

387 |
yt-channel
388 |
389 |
390 |
391 |
392 | 393 | 394 |
395 |

Search Twitter for a Twitter account and get it's info.

396 |
397 |

Usage:

398 |
twitter < screen name >
399 |
400 |
401 |

Example:

402 |
twitter DevCytech
403 |
404 |
405 |

Aliases:

406 |
twitter-user
407 |
408 |
409 |
410 |
411 |
412 |
413 | 414 | 415 |
416 |
417 | 418 | 419 |
420 |

Create your own minecraft achievements!

421 |
422 |

Usage:

423 |
achievement < text >
424 |
425 |
426 |

Example:

427 |
achievement Using Disconnect
428 |
429 |
430 |

Aliases:

431 |
mc
432 |
minecraft
433 |
minecraft-achievement
434 |
435 |
436 |
437 |
438 | 439 | 440 |
441 |

Get a random picture and fact about an animal (Currently supporting only Koalas, 442 | Panda, and Birds)

443 |
444 |
445 |
446 | 447 | 448 |
449 |

Get a random picture and fact of a cat.

450 |
451 |
452 |
453 | 454 | 455 |
456 |

Get a random picture and fact of a dog.

457 |
458 |
459 |
460 | 461 | 462 |
463 |

Get a random picture of anime food/ coffee.

464 |
465 |
466 |
467 | 468 | 469 |
470 |

Get a random picture and fact of a fox.

471 |
472 |
473 |
474 |
475 |
476 | 477 | 478 |
479 |
480 | 481 | 482 |
483 |

Boop another member!

484 |
485 |

Usage:

486 |
boop [member]
487 |
488 |
489 |
490 |
491 | 492 | 493 |
494 |

Feed another member!

495 |
496 |

Usage:

497 |
feed [member]
498 |
499 |
500 |
501 |
502 | 503 | 504 |
505 |

Fist bump another member!

506 |
507 |

Usage:

508 |
fist-bump [member]
509 |
510 |
511 |
512 |
513 | 514 | 515 |
516 |

High five another member!

517 |
518 |

Usage:

519 |
high-five [member]
520 |
521 |
522 |
523 |
524 | 525 | 526 |
527 |

Hug another member!

528 |
529 |

Usage:

530 |
hug [member]
531 |
532 |
533 |
534 |
535 | 536 | 537 |
538 |

Kiss another member!

539 |
540 |

Usage:

541 |
kiss [member]
542 |
543 |
544 |
545 |
546 | 547 | 548 |
549 |

Nuzzle with another member!

550 |
551 |

Usage:

552 |
nuzzle [member]
553 |
554 |
555 |

Aliases:

556 |
cuddle
557 |
558 |
559 |
560 |
561 | 562 | 563 |
564 |

Pat another member!

565 |
566 |

Usage:

567 |
pat [member]
568 |
569 |
570 |
571 |
572 | 573 | 574 |
575 |

Poke another member!

576 |
577 |

Usage:

578 |
poke [member]
579 |
580 |
581 |
582 |
583 | 584 | 585 |
586 |

Punch another member!

587 |
588 |

Usage:

589 |
punch [member]
590 |
591 |
592 |
593 |
594 | 595 | 596 |
597 |

Slap another member!

598 |
599 |

Usage:

600 |
slap [member]
601 |
602 |
603 |
604 |
605 | 606 | 607 |
608 |

Tickle another member!

609 |
610 |

Usage:

611 |
tickle [member]
612 |
613 |
614 |
615 |
616 | 617 | 618 |
619 |

Wink another member!

620 |
621 |

Usage:

622 |
wink [member]
623 |
624 |
625 |
626 |
627 |
628 |
629 | 630 | 631 |
632 |
633 | 634 | 635 |
636 |

This command gives you a little bit of info on me. But why use the bot when you're 637 | already here? Check out the bot info on the information page!

639 |
640 |

Usage:

641 |
bot-info
642 |
643 |
644 |
645 |
646 | 647 | 648 |
649 |

Get information on a command.

650 |
651 |

Usage:

652 |
command-info [command]
653 |
654 |
655 |

Example:

656 |
command-info help
657 |
658 |
659 |
660 |
661 | 662 | 663 |
664 |

Get a list of all commands on Disconnect.

665 |
666 |

Usage:

667 |
command-list
668 |
669 |
670 |
671 |
672 | 673 | 674 |
675 |

Want a list of all emoji in your server or information about one?

676 |
677 |

Usage:

678 |
emojis [emoji id]
679 |
680 |
681 |

Example:

682 |
emojis 795353967852519434
683 |
684 |
685 |
686 |
687 | 688 | 689 |
690 |

Get information on your guild.

691 |
692 |

Usage:

693 |
guild-info
694 |
695 |
696 |
697 |
698 | 699 | 700 |
701 |

Get information on a role.

702 |
703 |

Usage:

704 |
role-info [role]
705 |
706 |
707 |

Example:

708 |
role-info 713812465728749619
709 |
710 |
711 |
712 |
713 | 714 | 715 |
716 |

Get information on a user.

717 |
718 |

Usage:

719 |
user-info [user]
720 |
721 |
722 |

Example:

723 |
user-info @Cytech#0001
724 |
725 |
726 |
727 |
728 |
729 |
730 | 731 | 732 |
733 |
734 | 735 | 736 |
737 |

Hey, why is my text upside down?

738 |
739 |

Usage:

740 |
flip-text < text >
741 |
742 |
743 |

Example:

744 |
flip-text This text is the right way up!
745 |
746 |
747 |
748 |
749 | 750 | 751 |
752 |

This command makes youw text owo-ified ;;w;;

753 |
754 |

Usage:

755 |
owoify < text >
756 |
757 |
758 |

Example:

759 |
owoify This text is not owoified... yet!
760 |
761 |
762 |

Aliases:

763 |
owoify-text
764 |
765 |
766 |
767 |
768 | 769 | 770 |
771 |

This command makes your text the wrong way around!

772 |
773 |

Usage:

774 |
reverse < text >
775 |
776 |
777 |

Example:

778 |
reverse !dexif eb ot sdeen txet sihT
779 |
780 |
781 |

Aliases:

782 |
reverse-text
783 |
784 |
785 |
786 |
787 | 788 | 789 |
790 |

This command fixes your sentences. They Yoda way!

791 |
792 |

Usage:

793 |
yodish < text >
794 |
795 |
796 |

Example:

797 |
yodish Yoda is the grand master. Yes.
798 |
799 |
800 |

Aliases:

801 |
yoda
802 |
803 |
804 |
805 |
806 |
807 |
808 | 809 | 810 |
811 |
812 | 813 | 814 |
815 |

Ban a user from your server!

816 |
817 |

Usage:

818 |
ban < member >
819 |
820 |
821 |

Example:

822 |
ban @Mee6#4876
823 |
824 |
825 |

Required Permissions:

826 |
Ban Members
827 |
828 |
829 |
830 |
831 | 832 | 833 |
834 |

kick a user from your server!

835 |
836 |

Usage:

837 |
kick < member >
838 |
839 |
840 |

Example:

841 |
kick @Mee6#4876
842 |
843 |
844 |

Required Permissions:

845 |
Kick Members
846 |
847 |
848 |
849 |
850 | 851 | 852 |
853 |

Purge/ delete a group of messages! (max of 100 messages)

854 |
855 |

Usage:

856 |
purge < amount >
857 |
858 |
859 |

Example:

860 |
purge 100
861 |
862 |
863 |

Required Permissions:

864 |
Manage Messages
865 |
866 |
867 |

Aliases:

868 |
clear
869 |
bulk-delete
870 |
871 |
872 |
873 |
874 | 875 | 876 |
877 |

Change your guilds prefix.

878 |
879 |

Usage:

880 |
set-prefix < prefix >
881 |
882 |
883 |

Example:

884 |
prefix ?
885 |
886 |
887 |

Required Permissions:

888 |
Manage Guild
889 |
890 |
891 |

Aliases:

892 |
change-prefix
893 |
894 |
895 |
896 |
897 | 898 | 899 |
900 |

Change your guilds welcoming settings.

901 |
902 |

Usage:

903 |
welcomer < option >
904 |
905 |
906 |

Example:

907 |
welcomer help
908 |
909 |
910 |

Required Permissions:

911 |
Manage Guild
912 |
913 |
914 |

Aliases:

915 |
set-welcomer
916 |
917 |
918 |
919 |
920 | 921 | 922 |
923 |

Change your guilds farewell settings.

924 |
925 |

Usage:

926 |
farewell < option >
927 |
928 |
929 |

Example:

930 |
farewell help
931 |
932 |
933 |

Required Permissions:

934 |
Manage Guild
935 |
936 |
937 |

Aliases:

938 |
set-farewekk
939 |
940 |
941 |
942 |
943 | 944 | 945 |
946 |

Get YouTube upload notifications in your server.

947 |
948 |

Usage:

949 |
youtube-notification < option >
950 |
951 |
952 |

Example:

953 |
youtube-notifier help
954 |
955 |
956 |

Required Permissions:

957 |
Manage Guild
958 |
959 |
960 |

Aliases:

961 |
yt-notify
962 |
963 |
964 |
965 |
966 | 967 | 968 |
969 |

Get Tweet notifications in your server.

970 |
971 |

Usage:

972 |
twitter-notification < option >
973 |
974 |
975 |

Example:

976 |
twitter-notifier help
977 |
978 |
979 |

Required Permissions:

980 |
Manage Guild
981 |
982 |
983 |

Aliases:

984 |
twitter-notify
985 |
986 |
987 |
988 |
989 |
990 |
991 | 992 | 993 |
994 |
995 | 996 | 997 |
998 |

🔞 Get random images from multiple categories including: boobs, ass, and pussy

999 | 1000 |
1001 |
1002 |
1003 | 1004 | 1005 |
1006 |

🔞 Get random anime images from multiple categories including: boobs, ass, and hentai 1007 |

1008 |
1009 |
1010 |
1011 | 1012 | 1013 |
1014 |

🔞 Search Rule 34 for porn.

1015 |
1016 |

Usage:

1017 |
rule-34 [search]
1018 |
1019 |
1020 |

Example:

1021 |
rule-34 hello
1022 |
1023 |
1024 |

Aliases:

1025 |
r-34
1026 |
1027 |
1028 |
1029 |
1030 |
1031 |
1032 | 1033 | 1034 |
1035 |
1036 | 1037 | 1038 |
1039 |

Grab another member's profile picture!

1040 |
1041 |

Usage:

1042 |
avatar [member]
1043 |
1044 |
1045 |

Example:

1046 |
avatar @Disconnect#2622
1047 |
1048 |
1049 |

Aliases:

1050 |
pfp
1051 |
profile-picture
1052 |
1053 |
1054 |
1055 |
1056 | 1057 | 1058 |
1059 |

Get invite information for Disconnect! Like Invite 1060 | Disconnect or Join the Disconnect Support Server! 1061 |

1062 |
1063 |
1064 |
1065 |
1066 |
1067 |
1068 |
1069 | 1070 | 1071 | 1072 | 1096 | 1097 | 1098 | 1099 | 1100 | -------------------------------------------------------------------------------- /docs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Disconnect - Documentation 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 29 | 31 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 58 | 59 | 60 | 61 |
62 |

Quick Start Guide

63 |
64 |
    65 |
  1. (Invite Disconnect to your guild! ) 66 |
  2. 67 |
  3. 68 |
    69 |

    Change the prefix to what you like using

    70 |
    set-prefix
    71 |

    72 |
    73 |
  4. 74 |
  5. You're all set to go! Have fun!
  6. 75 |
76 |
77 |
78 | 79 | 80 |
81 |

About

82 |
83 |

84 | Your boy Cy started Disconnect to learn coding but ended up turning into something absolutely 85 | incredible. 86 | He released it to the public, and learned from the steady growth that he was in the right direction 87 | and that the public had pretty good taste hehe. 88 | And so he continued to rock a service people loved and adored which turned into this bot of 89 | awesomeness before you! 90 | So far it's been a really fun solo project for Cy and he wishes to share that fun by allowing everyone 91 | to invite the bot to your server! 92 |

93 |

94 | To make it even squeaky clean, the Disconnect bot has been rewritten for you to have the 95 | smoothest time generating pictures of cute dogs, 96 | memeing out, and staking your lives on a legit game of coin flip or rock, paper, 97 | scissors with your buddies! 98 | And yeah, it'll always stay up to date on those silly API switches! 99 |

100 |
101 |
102 | 103 | 104 |
105 |

Latest Update

106 |

Version 2.1.2 - Code Review + Twitter Notifier

107 |
108 | 125 |
126 |

Have an idea or feature in mind you want to see on Disconnect? Request it on the Disconnect Support Server Here!

128 |
129 | 130 | 131 |
132 |

Developers

133 |
134 |
135 |

Cytech

136 |

Hello I am Cytech! The creator of Disconnect and this website! Thank you for using Disconnect and I 137 | hope he meets your expectations!

138 |
139 |

Check Me Out Below!

140 |
141 | 142 | 143 | 144 | 145 |
146 |
147 |
148 |
149 | 150 | 151 | 175 | 176 | 177 | 178 | 179 | 180 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Disconnect - Discord Bot! 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 29 | 31 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 59 | 60 | 61 |
62 |
63 |
64 |

Disconnect - Discord Bot!

65 |

Made with love to be the glue to your community. Keep your community together and active!

66 | 72 |
73 |
74 |
75 | 76 | 77 |
78 |
79 |
80 |

Entertainment

81 |

With Disconnect's entertainment there is never a dull moment. Even with its basic start, 82 | Disconnect is 83 | coming in strong with many new features lined up to kickstart activity in your server! 84 | Whether it be 85 | animals, economy, music, or even levelling! ~Disconnect will have it all 86 | under control! 87 |

88 |
89 | rock paper siccors game loss 90 |
91 |
92 | 93 |
94 |
95 | Now Playing Martin Garrix Tremor 96 |
97 |

Music

98 |

It has been a long time coming but Disconnect has joined the music game providing high quality music 99 | from 100 | YouTube, Spotify, Soundcloud, and Discord attachments (mp3 files) 101 |

102 |
103 | Cytech has booped Creepa! 104 |
105 |
106 | 107 |
108 |
109 |
110 |

Moderation

111 |

Disconnect comes with a simple but efficient moderation system. Yes, the current system is pretty 112 | bare 113 | bones featuring the Kick, Ban, Purge, and Set-Prefix which is 114 | absolutely perfect for many Discord servers! 115 | The simplicity of the current moderation makes head room for some spectacular expansions with some 116 | great and 117 | unique features, some of which are already in development! 118 |

119 |
120 | You may not ban the owner of the guild. 121 |
122 |
123 | 124 | 125 | 149 | 150 | 151 | 152 | 153 | -------------------------------------------------------------------------------- /invite.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Invite Disconnect 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 63 | 64 | 65 |
66 |
67 |
68 |

Redirecting...

69 |

If you are not automatically redirected please click the button below to Invite Disconnect!

70 |
71 | Add to Discord 73 |
74 |
75 |
76 |
77 | 78 | 79 | 103 | 104 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /premium.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Disconnect Premium 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 62 | 63 | 64 |
65 |
66 |
67 |

Redirecting...

68 |

If you are not automatically redirected please click the button below to view Disconnects premium 69 | tiers!

70 | 74 |
75 |
76 |
77 | 78 | 79 | 103 | 104 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * Disallow: 2 | -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | https://disconnectbot.com/ 7 | 2021-01-08T20:27:24+00:00 8 | 1.00 9 | 10 | 11 | https://disconnectbot.com/commands.html 12 | 2021-01-08T20:27:24+00:00 13 | 0.90 14 | 15 | 16 | https://disconnectbot.com/docs.html 17 | 2021-01-08T20:27:24+00:00 18 | 0.80 19 | 20 | 21 | https://disconnectbot.com/premium.html 22 | 2021-01-08T20:27:24+00:00 23 | 0.80 24 | 25 | 26 | https://disconnectbot.com/invite.html 27 | 2021-01-08T20:27:24+00:00 28 | 0.80 29 | 30 | 31 | https://disconnectbot.com/support.html 32 | 2021-01-08T20:27:24+00:00 33 | 0.80 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /styles/commands.css: -------------------------------------------------------------------------------- 1 | .commands a { 2 | color: var(--purple); 3 | } 4 | 5 | a:hover { 6 | color: var(--light-purple); 7 | } 8 | 9 | pre, 10 | code { 11 | font-family: 'Courier New', monospace; 12 | } 13 | 14 | /* Notes */ 15 | .notes { 16 | margin: 25px 50px; 17 | } 18 | 19 | .notes .grid h2 { 20 | font-weight: 400; 21 | border-bottom: 2px solid; 22 | } 23 | 24 | .notes .flex { 25 | margin: 10px 0; 26 | font-size: 14px; 27 | justify-content: flex-start; 28 | } 29 | 30 | .notes p { 31 | font-size: 14; 32 | } 33 | 34 | .commandPrefix, 35 | .commandSyntax { 36 | height: 100%; 37 | } 38 | 39 | .notes .flex { 40 | height: auto; 41 | } 42 | 43 | /* Accordion */ 44 | .accordion { 45 | overflow: hidden; 46 | width: 100%; 47 | } 48 | 49 | .acordion_label, 50 | .content { 51 | padding: 10px; 52 | } 53 | 54 | .accordion_label { 55 | display: block; 56 | cursor: pointer; 57 | position: relative; 58 | transition: background 0.1s; 59 | padding: 5px 10px; 60 | border-radius: 5px; 61 | } 62 | 63 | .accordion_label:hover { 64 | border-radius: 5px; 65 | background: rgba(0, 0, 0, 0.1); 66 | } 67 | 68 | .accordion_label::after { 69 | content: ''; 70 | position: absolute; 71 | top: 50%; 72 | transform: translateY(-50%); 73 | right: 20px; 74 | width: 12px; 75 | height: 6px; 76 | background-image: url('data:image/svg+xml;utf8,'); 77 | background-size: contain; 78 | transition: transform 0.4s; 79 | } 80 | 81 | .content { 82 | display: none; 83 | } 84 | 85 | .accordion_input { 86 | display: none; 87 | } 88 | 89 | .accordion_input:checked ~ .accordion_label { 90 | border-bottom: var(--light-purple) 2px solid; 91 | } 92 | 93 | .accordion_input:checked ~ .content { 94 | display: inline-block; 95 | } 96 | 97 | .accordion_input:checked ~ .accordion_label::after { 98 | transform: translateY(-50%) rotate(0.5turn); 99 | } 100 | 101 | .commands .card { 102 | padding: 5px 10px; 103 | background-color: var(--primary-color); 104 | } 105 | 106 | /* Command Content */ 107 | .commands .usage { 108 | margin: 5px 0; 109 | justify-content: flex-start; 110 | } 111 | 112 | .commands .usage h4 { 113 | font-weight: 400; 114 | padding-right: 5px; 115 | color: var(--grey-text); 116 | text-transform: uppercase; 117 | } 118 | 119 | .commands pre { 120 | margin: 0; 121 | color: var(--grey-text); 122 | } 123 | 124 | .commands pre, 125 | .commands code { 126 | width: auto; 127 | } 128 | 129 | .commands p { 130 | color: #ffffff; 131 | } 132 | 133 | @media (max-width: 987px) { 134 | .notes .grid { 135 | grid-template-columns: 1fr; 136 | grid-template-rows: 1fr; 137 | } 138 | } 139 | 140 | @media (max-width: 768px) { 141 | .notes { 142 | padding: 10px; 143 | } 144 | 145 | .notes .grid { 146 | grid-template-columns: 1fr; 147 | grid-template-rows: 1fr; 148 | } 149 | 150 | .notes p, 151 | .notes pre { 152 | font-size: 12px; 153 | } 154 | 155 | .notes h2 { 156 | font-size: 13px; 157 | } 158 | } 159 | 160 | @media (max-width: 550px) { 161 | .notes .pop { 162 | flex-direction: column; 163 | } 164 | } 165 | 166 | @media (max-width: 450px) { 167 | pre, 168 | code { 169 | font-size: 12px; 170 | } 171 | 172 | label, 173 | p, 174 | h4 { 175 | font-size: 14px; 176 | } 177 | 178 | .commands p { 179 | text-align: center; 180 | } 181 | 182 | .commands .flex { 183 | flex-direction: column; 184 | } 185 | } 186 | -------------------------------------------------------------------------------- /styles/common.css: -------------------------------------------------------------------------------- 1 | /* Imports */ 2 | @import url('https://fonts.googleapis.com/css2?family=Lato&display=swap'); 3 | 4 | /* Body */ 5 | :root { 6 | --primary-color: #292a2e; 7 | --secondary-color: #202024; 8 | --grey-text: #c9ccd6; 9 | --error-color: #fc4747; 10 | --purple: #663399; 11 | --light-purple: #8f45d9; 12 | } 13 | 14 | * { 15 | font-family: 'Lato', sans-serif; 16 | box-sizing: border-box; 17 | padding: 0px; 18 | margin: 0px; 19 | } 20 | 21 | html { 22 | scroll-behavior: smooth; 23 | max-width: 100%; 24 | overflow-x: hidden; 25 | } 26 | 27 | body { 28 | height: 100%; 29 | flex-direction: column; 30 | background-color: var(--primary-color); 31 | line-height: 1.6; 32 | color: #ffffff; 33 | max-width: 100%; 34 | overflow-x: hidden; 35 | } 36 | 37 | /* Buttons */ 38 | .btn { 39 | border: none; 40 | margin: 10px; 41 | color: #ffffff; 42 | cursor: pointer; 43 | font-size: 16px; 44 | padding: 10px 30px; 45 | border-radius: 5px; 46 | display: inline-block; 47 | background-color: var(--secondary-color); 48 | box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); 49 | transition: all 0.5s; 50 | } 51 | 52 | .btn-blurple { 53 | background-color: #7289da; 54 | } 55 | 56 | .btn i { 57 | top: 3px; 58 | font-size: 125%; 59 | margin: 0 4px 0 0; 60 | position: relative; 61 | } 62 | 63 | /* Nav Bar */ 64 | .navbar { 65 | color: #ffffff; 66 | height: 70px; 67 | font-weight: 400; 68 | background-color: var(--secondary-color); 69 | border-bottom: var(--purple) 5px solid; 70 | } 71 | 72 | .navbar ul { 73 | display: flex; 74 | } 75 | 76 | .navbar a { 77 | color: var(--grey-text); 78 | padding: 10px; 79 | margin: 0; 80 | padding: 0 10px; 81 | } 82 | 83 | .navbar a:hover { 84 | color: #ffffff; 85 | } 86 | 87 | .navbar .currentPage, 88 | .navbar .currentPage:hover { 89 | color: var(--light-purple); 90 | } 91 | 92 | .navbar .flex { 93 | justify-content: space-between; 94 | } 95 | 96 | .navbar .logo { 97 | margin: 0 10px; 98 | } 99 | 100 | .navbar .logo img { 101 | height: 75%; 102 | margin: auto 5px; 103 | } 104 | 105 | .navbar .logo p { 106 | font-weight: 400; 107 | font-size: 1.5rem; 108 | padding: 0 2px; 109 | color: #ffffff; 110 | } 111 | 112 | /* Footer */ 113 | .footer { 114 | width: 100%; 115 | border-top: var(--purple) 5px solid; 116 | padding: 30px; 117 | height: 200px; 118 | background-color: var(--secondary-color); 119 | } 120 | 121 | .footer h4 { 122 | color: var(--light-purple); 123 | font-weight: 400; 124 | font-size: 1.5rem; 125 | } 126 | 127 | .footer .flex { 128 | justify-content: flex-end; 129 | } 130 | 131 | .footer .footernav { 132 | margin: 0 25px; 133 | } 134 | 135 | .footernav a:hover { 136 | color: #ffffff; 137 | } 138 | 139 | /* Animations */ 140 | .button span { 141 | cursor: pointer; 142 | display: inline-block; 143 | position: relative; 144 | transition: 0.5s; 145 | } 146 | 147 | .button span:after { 148 | font-size: 25px; 149 | content: '\00bb'; 150 | position: absolute; 151 | opacity: 0; 152 | top: -10px; 153 | right: -20px; 154 | transition: 0.5s; 155 | } 156 | 157 | .button:hover span { 158 | padding-right: 25px; 159 | } 160 | 161 | .button:hover span:after { 162 | opacity: 1; 163 | right: 0; 164 | } 165 | 166 | /* Responsive */ 167 | @media (max-width: 768px) { 168 | .navbar { 169 | height: auto; 170 | font-size: 1.05rem; 171 | } 172 | 173 | .navbar ul { 174 | margin: 0 0 15px 0; 175 | } 176 | 177 | .navbar .flex { 178 | flex-direction: column; 179 | } 180 | 181 | .navbar .logo { 182 | margin: 10px 0 5px 0; 183 | flex-direction: row; 184 | } 185 | 186 | .navbar .logo p { 187 | font-size: 1.5rem; 188 | } 189 | 190 | .navbar .logo img { 191 | height: 50px; 192 | } 193 | } 194 | 195 | @media (max-width: 450px) { 196 | .navbar { 197 | justify-content: center; 198 | width: 100%; 199 | height: auto; 200 | font-size: 1rem; 201 | } 202 | 203 | .navbar .logo:active ul { 204 | display: block; 205 | } 206 | 207 | .navbar ul { 208 | margin: 0 0 15px 0; 209 | } 210 | 211 | .navbar .flex { 212 | flex-direction: column; 213 | } 214 | 215 | .navbar ul { 216 | flex-direction: column; 217 | align-items: center; 218 | } 219 | 220 | .navbar li { 221 | margin: 5px 0; 222 | font-size: 1rem; 223 | } 224 | 225 | .navbar .logo { 226 | margin: 10px 0 5px 0; 227 | flex-direction: row; 228 | } 229 | 230 | .navbar .logo p { 231 | font-size: 1.5rem; 232 | } 233 | 234 | .navbar .logo img { 235 | height: 50px; 236 | } 237 | 238 | .footer { 239 | height: auto; 240 | } 241 | 242 | .footer .branding p, 243 | .footer .branding h4 { 244 | text-align: center; 245 | } 246 | 247 | .footer .grid { 248 | grid-template-columns: 1fr; 249 | grid-template-rows: 1fr; 250 | } 251 | 252 | .footer .flex { 253 | width: 100%; 254 | flex-direction: column; 255 | } 256 | 257 | .footer .flex ul { 258 | text-align: center; 259 | } 260 | 261 | .footer li { 262 | margin: 5px 0; 263 | } 264 | } 265 | -------------------------------------------------------------------------------- /styles/docs.css: -------------------------------------------------------------------------------- 1 | a { 2 | color: var(--purple); 3 | } 4 | 5 | .footernav a { 6 | color: var(--grey-text); 7 | } 8 | 9 | .footernav a:hover { 10 | color: #ffffff; 11 | } 12 | 13 | a:hover { 14 | color: var(--light-purple); 15 | } 16 | 17 | h2, 18 | h3 { 19 | text-align: center; 20 | } 21 | 22 | /* Quick Start */ 23 | .quickstart ol { 24 | margin: 5px 25px; 25 | padding: 5px; 26 | color: #ffffff; 27 | } 28 | 29 | .quickstart ol li { 30 | list-style-type: decimal; 31 | } 32 | 33 | /* About */ 34 | .about p { 35 | text-indent: 25px; 36 | } 37 | 38 | /* Changelog */ 39 | .changelog { 40 | text-align: center; 41 | } 42 | 43 | .changelog ul li { 44 | text-align: left; 45 | list-style-type: disc; 46 | } 47 | 48 | /* Developers */ 49 | .devs { 50 | text-align: center; 51 | } 52 | 53 | .devs .card { 54 | background-color: var(--primary-color); 55 | } 56 | 57 | .devs i { 58 | margin: 5px; 59 | } 60 | 61 | /* Responsive */ 62 | @media (max-width: 720px) { 63 | .quickstart .flex { 64 | flex-direction: column; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- 1 | /* Showcase */ 2 | .showcase { 3 | height: 700px; 4 | position: relative; 5 | } 6 | 7 | .showcase h1 { 8 | font-size: 40px; 9 | position: center; 10 | text-align: center; 11 | } 12 | 13 | .showcase p { 14 | margin: 20px 0; 15 | text-align: center; 16 | } 17 | 18 | .showcase .flex { 19 | overflow: visible; 20 | justify-content: center; 21 | } 22 | 23 | /* Panels */ 24 | .features { 25 | height: auto 500px; 26 | margin: 50px 0; 27 | } 28 | 29 | .features h3 { 30 | text-align: center; 31 | font-size: 25px; 32 | font-weight: 400; 33 | } 34 | 35 | .features p { 36 | text-align: center; 37 | } 38 | 39 | .features img { 40 | border-radius: 5px; 41 | justify-self: center; 42 | width: 75%; 43 | } 44 | 45 | .mobile { 46 | display: none; 47 | } 48 | 49 | /* Tablet Responsive */ 50 | @media (max-width: 768px) { 51 | .features img { 52 | width: 100%; 53 | } 54 | } 55 | 56 | @media (max-width: 450px) { 57 | .showcase { 58 | height: 450px; 59 | } 60 | 61 | .showcase .buttons { 62 | flex-direction: column; 63 | } 64 | 65 | .showcase h1 { 66 | font-size: 25px; 67 | } 68 | 69 | .showcase p { 70 | font-size: 14px; 71 | } 72 | 73 | .showcase a { 74 | width: 100%; 75 | text-align: center; 76 | } 77 | 78 | .features .grid { 79 | grid-template-columns: 1fr; 80 | grid-template-rows: 1fr; 81 | } 82 | 83 | .desktop { 84 | display: none; 85 | } 86 | 87 | .mobile { 88 | display: block; 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /styles/utilities.css: -------------------------------------------------------------------------------- 1 | /* Text */ 2 | ul, 3 | li { 4 | list-style-type: none; 5 | } 6 | 7 | a, 8 | p { 9 | text-decoration: none; 10 | color: var(--grey-text); 11 | } 12 | 13 | pre { 14 | background: #26292e; 15 | padding: 1px 5px; 16 | margin: 0 5px; 17 | border-radius: 5px; 18 | color: #f75f54; 19 | border: #000000 1px solid; 20 | font-family: 'Courier New', monospace; 21 | white-space: pre-wrap; 22 | } 23 | 24 | /* Scroll Bar */ 25 | ::-webkit-scrollbar { 26 | width: 12px; 27 | height: 8px; 28 | border: 2px solid transparent; 29 | background-clip: padding-box; 30 | border-radius: 100px; 31 | -webkit-border-radius: 100px; 32 | background-color: rgba(0, 0, 0, 0.1); 33 | } 34 | 35 | ::-webkit-scrollbar-corner { 36 | background-color: transparent; 37 | } 38 | 39 | ::-webkit-scrollbar-track { 40 | border: 3px solid transparent; 41 | } 42 | 43 | ::-webkit-scrollbar-thumb { 44 | width: 10px; 45 | background: #202024; 46 | background-clip: padding-box; 47 | border-radius: 100px; 48 | -webkit-border-radius: 100px; 49 | border: 2px solid transparent; 50 | } 51 | 52 | ::-webkit-scrollbar-thumb:hover { 53 | width: 10px; 54 | background: #19191c; 55 | background-clip: padding-box; 56 | border-radius: 100px; 57 | -webkit-border-radius: 100px; 58 | border: 2px solid transparent; 59 | } 60 | 61 | /* Containers */ 62 | .container { 63 | max-width: 90%; 64 | margin: 0 auto; 65 | overflow: auto; 66 | padding: 0 40px; 67 | } 68 | 69 | .full { 70 | max-width: 100%; 71 | } 72 | 73 | /* Grid */ 74 | .grid { 75 | height: 100%; 76 | display: grid; 77 | grid-gap: 20px; 78 | align-items: center; 79 | justify-content: center; 80 | grid-template-columns: repeat(2, 1fr); 81 | } 82 | 83 | grid-5 { 84 | grid-template-columns: repeat(5, 1fr); 85 | } 86 | 87 | /* Flex */ 88 | .flex { 89 | display: flex; 90 | justify-content: center; 91 | align-items: center; 92 | height: 100%; 93 | } 94 | 95 | /* Cards */ 96 | .card { 97 | background-color: var(--secondary-color); 98 | border-radius: 10px; 99 | box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); 100 | padding: 20px; 101 | margin: 10px; 102 | width: auto; 103 | } 104 | -------------------------------------------------------------------------------- /support.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Invite Disconnect 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 62 | 63 | 64 |
65 |
66 |
67 |

Redirecting...

68 |

If you are not automatically redirected please click the button below to Join the Disconnect Support 69 | Server!

70 | 73 |
74 |
75 |
76 | 77 | 78 | 102 | 103 | 104 | 105 | 106 | 107 | --------------------------------------------------------------------------------