├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── config.yml ├── SECURITY.md └── stale.yml ├── .gitignore ├── Art ├── ToolkitLogo.jpg ├── ToolkitSS.jpg ├── Toolkit_Demo.mp4 └── toolkit.png ├── CITATION.cff ├── Custom CSS ├── proper-dark-mode.js └── userbgs-db.css ├── Documentation ├── Injection.js ├── README.md ├── customPlugin.js └── customTheme.js ├── LICENSE ├── Plugins ├── Example.js └── README.md ├── README.md ├── Themes ├── DarkerThanDark.theme.js ├── ImageBase.theme.js ├── PrimaryX.theme.js ├── README.md └── Wyvern.theme.js └── dist └── Main └── src.js /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We would like to make Discord an easy program to use as well as adding fun features here and there. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment 10 | include: 11 | 12 | * Using welcoming and inclusive language 13 | * Being respectful of differing viewpoints and experiences 14 | * Gracefully accepting constructive criticism 15 | * Focusing on what is best for the community 16 | * Showing empathy towards other community members 17 | 18 | Examples of unacceptable behavior by participants include: 19 | 20 | * The use of sexualized language or imagery and unwelcome sexual attention or 21 | advances 22 | * Trolling, insulting/derogatory comments, and personal or political attacks 23 | * Public or private harassment 24 | * Publishing others' private information, such as a physical or electronic 25 | address, without explicit permission 26 | * Other conduct which could reasonably be considered inappropriate in a 27 | professional setting 28 | 29 | ## Our Responsibilities 30 | 31 | Project maintainers are responsible for clarifying the standards of acceptable 32 | behavior and are expected to take appropriate and fair corrective action in 33 | response to any instances of unacceptable behavior. 34 | 35 | Project maintainers have the right and responsibility to remove, edit, or 36 | reject comments, commits, code, wiki edits, issues, and other contributions 37 | that are not aligned to this Code of Conduct, or to ban temporarily or 38 | permanently any contributor for other behaviors that they deem inappropriate, 39 | threatening, offensive, or harmful. 40 | 41 | ## Scope 42 | 43 | This Code of Conduct applies both within project spaces and in public spaces 44 | when an individual is representing the project or its community. Examples of 45 | representing a project or community include using an official project e-mail 46 | address, posting via an official social media account, or acting as an appointed 47 | representative at an online or offline event. Representation of a project may be 48 | further defined and clarified by project maintainers. 49 | 50 | ## Enforcement 51 | 52 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 53 | reported by contacting the project team at toolkit@the-red-hand.com. All 54 | complaints will be reviewed and investigated and will result in a response that 55 | is deemed necessary and appropriate to the circumstances. The project team is 56 | obligated to maintain confidentiality with regard to the reporter of an incident. 57 | Further details of specific enforcement policies may be posted separately. 58 | 59 | Project maintainers who do not follow or enforce the Code of Conduct in good 60 | faith may face temporary or permanent repercussions as determined by other 61 | members of the project's leadership. 62 | 63 | [homepage]: https://toolkit.the-red-hand.com 64 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Raz-js, USERNAME, USERNAME, USERNAME] 4 | patreon: # Replace with a single Patreon username 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 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: ['https://paypal.me/razebr'] 14 | 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 🙏 Request help with setup or report a possible issue 4 | url: https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/discussions/new?category=q-a 5 | about: Post here when having trouble with setup or configuration 6 | - name: 💡 Suggest new features 7 | url: https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/discussions/new?category=ideas 8 | about: Submit ideas to help us improve 9 | - name: 💬 Start a discussion 10 | url: https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/discussions/new?category=general 11 | about: Ask other questions related to this project here 12 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | - [Security Policy](#security-policy) 6 | - [Supported Versions](#supported-versions) 7 | - [Reporting a Vulnerability](#reporting-a-vulnerability) 8 | 9 | 10 | 11 | # Security Policy 12 | 13 | ## Supported Versions 14 | 15 | Supported Versions for security patches: 16 | 17 | | Vers Num | Description | 18 | | --------- | ----------------------------------------- | 19 | | v5.1 | Latest Public Release | 20 | | V1.0 | First Release | 21 | 22 | ## Reporting a Vulnerability 23 | 24 | Please report (suspected) security vulnerabilities to 25 | **[toolkit@the-red-hand.com](mailto:toolkit@the-red-hand.com)**. You will receive a response from 26 | us within 48 hours (hopefully). If the issue is confirmed, we will release a patch as soon 27 | as possible depending on complexity but historically within a few days. 28 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 60 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - security 9 | # Label to use when marking an issue as stale 10 | staleLabel: wontfix 11 | # Comment to post when marking an issue as stale. Set to `false` to disable 12 | markComment: > 13 | This issue has been automatically marked as stale because it has not had 14 | recent activity. It will be closed if no further activity occurs. Thank you 15 | for your contributions. 16 | # Comment to post when closing a stale issue. Set to `false` to disable 17 | closeComment: false 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .github 2 | -------------------------------------------------------------------------------- /Art/ToolkitLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Discord-Toolkit-Official/Discord-Toolkit-Public/d57e1b92ad98b0a240dc772d427fe9e5cbf1ab8d/Art/ToolkitLogo.jpg -------------------------------------------------------------------------------- /Art/ToolkitSS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Discord-Toolkit-Official/Discord-Toolkit-Public/d57e1b92ad98b0a240dc772d427fe9e5cbf1ab8d/Art/ToolkitSS.jpg -------------------------------------------------------------------------------- /Art/Toolkit_Demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Discord-Toolkit-Official/Discord-Toolkit-Public/d57e1b92ad98b0a240dc772d427fe9e5cbf1ab8d/Art/Toolkit_Demo.mp4 -------------------------------------------------------------------------------- /Art/toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Discord-Toolkit-Official/Discord-Toolkit-Public/d57e1b92ad98b0a240dc772d427fe9e5cbf1ab8d/Art/toolkit.png -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- 1 | cff-version: 1.2.0 2 | message: "If you use this software, please cite it as below." 3 | authors: 4 | - family-names: "Raz" 5 | given-names: "Ebr" 6 | orcid: "https://orcid.org/0000-0000-0000-0000" 7 | - family-names: "Tung" 8 | given-names: " " 9 | orcid: "https://orcid.org/0000-0000-0000-0000" 10 | - family-names: "Wang" 11 | given-names: " " 12 | orcid: "https://orcid.org/0000-0000-0000-0000" 13 | - family-names: "Fiber" 14 | given-names: "Modem" 15 | orcid: "https://orcid.org/0000-0000-0000-0000" 16 | - family-names: "Doggy" 17 | given-names: "Bootsy" 18 | orcid: "https://orcid.org/0000-0000-0000-0000" 19 | - family-names: "Immoral" 20 | given-names: " " 21 | orcid: "https://orcid.org/0000-0000-0000-0000" 22 | - family-names: "FTR" 23 | given-names: " " 24 | orcid: "https://orcid.org/0000-0000-0000-0000" 25 | title: "Discord Toolkit" 26 | version: 1.0.0 27 | doi: 10.5281/zenodo.1234 28 | date-released: 2022-03-18 29 | url: "https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public" 30 | -------------------------------------------------------------------------------- /Custom CSS/proper-dark-mode.js: -------------------------------------------------------------------------------- 1 | injecttheme("White2Dark", ".container-1Lk8p7 { background: #1c1c1c } .theme-light .footer-31IekZ { background-color: #f6f6f700; box-shadow: inset 0 1px 0 rgb(246 246 247 / 0%) } .container-x8Y1ix { background-color: #160e0e }") 2 | 3 | /* 4 | Turns Some Base Modals Into DarkMode Instead Of Default WhiteMode 5 | */ 6 | -------------------------------------------------------------------------------- /Custom CSS/userbgs-db.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Documentation/Injection.js: -------------------------------------------------------------------------------- 1 | /* Copy everything from: https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/Toolkit.js 2 | and paste it in console, 3 | 4 | if console wont open on stable or ptb use this fix: 5 | 6 | You have two options: 7 | 1. You can still open Devtools in the browser. 8 | 2. You can turn it back *on* using by setting: "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true 9 | in "%appdata%/discord/settings.json". 10 | */ 11 | 12 | /* 13 | Video Explanation Here: https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/Art/Toolkit_Demo.mp4 14 | */ 15 | 16 | //Injection wont work on Canary 17 | -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- 1 | # Discord Toolkit Documentation 2 | --------------------------------------------------- 3 | [Injection](https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/Documentation/Injection.js) 4 | [Custom Plugins](https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/Documentation/customPlugin.js) 5 | [Custom Themes](https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/Documentation/customTheme.js) 6 | -------------------------------------------------------------------------------- /Documentation/customPlugin.js: -------------------------------------------------------------------------------- 1 | // Plugin Info 2 | var pluginOneName = "Your Plugin" 3 | var pluginOneDesc = "Your Description" 4 | /* Author: Your Discord Username */ 5 | 6 | //Add Your Plugin Code At "//Your Code" 7 | function customplugin () { 8 | //Your Code 9 | } 10 | 11 | /* Add Your Plugin Removal Code At "//Your Code" 12 | - ejectCustomPlugin */ 13 | function ejectcusplugin () { 14 | //Your Code 15 | } 16 | 17 | //Self-Explanatory 18 | -------------------------------------------------------------------------------- /Documentation/customTheme.js: -------------------------------------------------------------------------------- 1 | /* 2 | //--------------------------------E.g Inject 3 | injecttheme("TestId", ".dark-theme { display: none }") 4 | --- or --- 5 | injecttheme("TestId", `.dark-theme { 6 | display: none 7 | }`) 8 | 9 | //--------------------------------uninject 10 | uninjecttheme("TestId") 11 | uninjecttheme("Testid") 12 | */ 13 | /*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/ 14 | //--------------------------------Theme Info (Give your theme a name and description) 15 | var themeName = "Your Theme" 16 | var themeDesc = "Your Description" 17 | /* Author: Your Discord Username */ 18 | 19 | //---------------------------------E.g Inject (Don't Edit "CTH") 20 | //---------------------------------If you decide to share your theme, make your mark on the theme by adding your username in the "Author" line/ 21 | function customtheme () { 22 | injecttheme("CTH", ".tag { css: css } .tag2 { css: css }") 23 | } 24 | 25 | /* or */ 26 | 27 | function customtheme () { 28 | injecttheme("CTH", ` 29 | .tag { 30 | css: css 31 | } 32 | .tag2 { 33 | css: css 34 | }`) 35 | } 36 | 37 | //--------------------------------E.g Eject (We've done this for you don't worry) 38 | function ejectcustheme () { 39 | uninjecttheme("CTH") 40 | } 41 | 42 | /*--------------------------------We have added this code into the toolkit you just need to edit it--------------------------------*/ 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Discord Toolkit 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software with restrictions, those include limitation to the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Plugins/Example.js: -------------------------------------------------------------------------------- 1 | // Plugin Info 2 | var pluginOneName = "Your Plugin" 3 | var pluginOneDesc = "Your Description" 4 | /* Author: Your Discord Username */ 5 | 6 | //Add Your Plugin Code At "//Your Code" 7 | function customplugin () { 8 | //Your Code 9 | } 10 | 11 | /* Add Your Plugin Removal Code At "//Your Code" 12 | - ejectCustomPlugin */ 13 | function ejectcusplugin () { 14 | //Your Code 15 | } 16 | -------------------------------------------------------------------------------- /Plugins/README.md: -------------------------------------------------------------------------------- 1 | # Coming Soon! 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | cover 3 |
4 | 5 |

Hello Fellow < Discord Users/ >!

6 |

7 | 8 |

9 |
Welcome to Discord Toolkit 10 |
11 | 12 |

Languages

13 | 14 | 15 | 16 | 17 | 18 | ## [Documentation](https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/Documentation/) 19 | 20 |
21 | 22 | 23 |
24 | --------------------------------------------------- 25 |
26 | 27 | How To Inject 28 | 29 | 30 | --------------------------------------------------- 31 | Copy all the code in "Toolkit" javascript file (.js) 32 | 33 | Go into Discord on your browser 34 | 35 | Press Ctrl + Shift + I 36 | 37 | Press Crtl + V then enter 38 | 39 | --------------------------------------------------- 40 |
41 |
42 | 43 | Not working? 44 | 45 | 46 | --------------------------------------------------- 47 | Refresh 48 | 49 | Disable any exstensions 50 | 51 | Ask in our discord https://toolkit.the-red-hand.com/discord 52 | 53 | or 54 | 55 | Report bugs in issues 56 | 57 | --------------------------------------------------- 58 |
59 | --------------------------------------------------- 60 |
61 | 62 |
63 | Features 64 | 65 |

66 | 67 |

132 |

133 | 134 | 135 |
136 | 137 | --------------------------------------------------- 138 | 139 | ## Other Technical Stuff 140 |
  • Dead Project atm
  • 141 | 142 | ### License 143 | --------------------------------------------------- 144 | [MIT License](https://github.com/Discord-Toolkit-Official/Discord-Toolkit-Public/blob/main/LICENSE) 145 | -------------------------------------------------------------------------------- /Themes/DarkerThanDark.theme.js: -------------------------------------------------------------------------------- 1 | var themeName = "DarkerThanDark Theme" 2 | var themeDesc = "Its Darker Than Dark Mode" 3 | /* Author: Raz#7970 */ 4 | function customtheme () { 5 | injecttheme("CTH", "* { --background-primary: 30,30,30; --background-secondary: 20,20,20; --background-secondary-alt: 15,15,15; --background-accent: 50,50,50; --background-floating: 0,0,0; --scrollbar-thin-track: #00000000; --channeltextarea-background: #151515; cursor: url(https://support.discord.com/hc/user_images/qYCQuNgeK384-hiX6ohKXA.png), auto !important } .theme-dark .container-2cd8Mz { background-color: #cecece00 } .theme-dark { --interactive-hover: #5682af; --text-normal: #778a88; --header-secondary: #185cc3 } .scroller-18M1mG { padding-bottom: 2px; background-color: #00000069; color: #00000069 } .theme-dark .selected-3H3-RC { background-color: #0102044f } .ownerIcon-255uKo { color: blue; margin-left: 4px } .attachButtonPlay-1ATmb5 { color: hsl(139,calc(var(--saturation-factor, 1)*47.3%),43.9%) } .pencilIcon-z04-c5 { color: #00b8ff } .icon-2xnN2Y { color: #154baa } .icon-Lupfh- { color: blue } .buttonWrapper-3YFQGJ { color: #a988a947 } .homeIcon-r0w4ny { color: deepskyblue } .wrapper-3kah-n.selected-1Drb7Z .childWrapper-1j_1ub, .wrapper-3kah-n:hover .childWrapper-1j_1ub { color: #09054987; background-color: #025773 } .linkButtonIcon-7rsZcu { color: #fa23fa } .applicationStore-2nk7Lo { background-color: #cecece00 } .clickable-ZD7xvu .icon-2xnN2Y { color: #205db9 } .item-3XjbnG { background-color: #0606082e } .brand-3g5E0C.item-3XjbnG, .themed-2-lozF.item-3XjbnG { color: #125fd3; background-color: rgb(0 0 0 / 0%) } .theme-dark .root-g14mjS { background-color: rgb(0 0 0 / 0%) } .winButton-3UMjdg { color: #0066ff } .attachButtonPlus-3IYelE { color: dodgerblue } .app-2CXKsg button { color: dodgerblue } .wordmarkWindows-2dq6rw { color: #1266f8 } .flowerStar-2tNFCR { width: 100%; height: 100%; color: slateblue } .theme-dark .footer-31IekZ { background-color: #00000000 } .theme-dark .message-G6O-Wv { background-color: #54638126 } .newMessagesBar-1hF-9G { background-color: #202 } .divider-2rZFJK { align-items: end } .colorStandard-21JIj7 { color: rgb(28 69 182) } .title-2dsDLn { color: #00dcff } .button-1iHNQ2 { background-color: white } .theme-dark .container-2McqkF { background-color: #36393f00 } .theme-dark .elevationBorderHigh-3drnJX { box-shadow: 0 0 0 1px rgb(30 64 115 / 60%), 0 2px 10px 0 rgb(0 0 0 / 20%) } .theme-dark .option-ayUoaq:after { background: linear-gradient(90deg,rgba(54,57,63,0),#274e9b12 80%) }") 6 | } 7 | -------------------------------------------------------------------------------- /Themes/ImageBase.theme.js: -------------------------------------------------------------------------------- 1 | var themeName = "Glasscord Theme" 2 | var themeDesc = "Discord But 100% transparent and you can add pictures" 3 | /* Author: Raz#7970 */ 4 | function customtheme () { 5 | injecttheme("CTH", `.content-1jQy2l, .theme-dark .root-g14mjS, .peopleColumn-1wMU14, .members-3WRCEx, .thin-31rlnD, .contentRegion-3HkfJJ, .scroller-1ox3I2, .container-ZMc96U.themed-Hp1KC_, .privateChannels-oVe7HL, .scroller-WSmht3, .scroller-3X7KbA, .withFrame-2dL45i, .sidebar-1tnWFu, .theme-dark { 6 | background-image: url('https://support.discord.com/hc/user_images/xlbQOO5MQcqPG3s2tlIukw.jpeg'); 7 | background-shading: 100%; /* app background shading (0 for complete smoothness) [default: 100%] */ 8 | background-overlay: rgba(0, 0, 0, 0.6); /* app background overlay color/gradient [default: rgba(0, 0, 0, 0.6)] */ 9 | background-position: center; /* app background position [default: center] */ 10 | background-size: cover; /* app background size [default: cover] */ 11 | background-repeat: no-repeat; /* app background repeat [default: no-repeat] */ 12 | background-attachment: fixed; /* app background attachment [default: fixed] */ 13 | background-brightness: 100%; /* app background brightness (< 100% for darken, > 100% for lighten) [default: 100%] */ 14 | background-contrast: 100%; /* app background contrast [default: 100%] */ 15 | background-saturation: 100%; /* app background saturation [default: 100%] */ 16 | background-invert: 0%; /* app background invert (0 - 100%) [default: 0%] */ 17 | background-grayscale: 0%; /* app background grayscale ( 0 - 100%) [default: 0%] */ 18 | background-sepia: 0%; /* app background sepia (0 - 100%) [default: 0%] */ 19 | background-blur: 30px; 20 | --background-primary: #36393f00; 21 | --background-secondary: #2f313642; 22 | --background-secondary-alt: #292b2f57; 23 | --background-tertiary: #2022254a; 24 | --background-accent: #4f545c38; 25 | --background-floating: #18191c82 26 | --scrollbar-thin-thumb: #20222500; 27 | --scrollbar-thin-track: #761c1c00; 28 | --scrollbar-auto-thumb: #20222500; 29 | --scrollbar-auto-track: #2230; 30 | --scrollbar-auto-scrollbar-color-thumb: #20222500; 31 | --scrollbar-auto-scrollbar-color-track: #2f313600; 32 | } 33 | .footer-3naVBw { 34 | background-color: #18191c00; 35 | color: #fff0; 36 | } 37 | .bodyInnerWrapper-2bQs1k { 38 | border-radius: 10px; 39 | } 40 | .scrollableContainer-15eg7h { 41 | background-color: #40444b29; 42 | } 43 | .channelTextArea-1FufC0 { 44 | background-color: #36393f29; 45 | } 46 | .platform-win .sidebar-1tnWFu { 47 | border-radius: 0px 0 0; 48 | } 49 | `) 50 | } 51 | -------------------------------------------------------------------------------- /Themes/PrimaryX.theme.js: -------------------------------------------------------------------------------- 1 | var themeName = "PrimaryX Theme" 2 | var themeDesc = "PrimaryX Theme" 3 | /* Author: Flame 'Em -_-rormommemm-_-#8020 */ 4 | function customtheme () { 5 | injecttheme("CTH", ".scrollableContainer-15eg7h { overflow-x: hidden; overflow-y: scroll; background-color: #2a3038; max-height: 50vh; border-radius: 8px } .wordmark-2u86JB > svg { display:none } .bg-1QIAus { background-color: transparent; background-position: var(--backgroundPosition); background-repeat: var(--backgroundRepeat); background-size: var(--backgroundSize); background-image: var(--backgroundImage); opacity: var(--backgroundOpacity); filter: blur(var(--backgroundBlur)) } .homeIcon-r0w4ny path { fill: transparent } .homeIcon-r0w4ny { background: url(https://images-ext-1.discordapp.net/external/JRob--kpQqtzAvUgdlNQbsPs1L2ObqCQlPn6Vml2sMc/%3Fsize%3D1024/https/cdn.discordapp.com/icons/936331893786431488/a_25ed60deaabe6b37751039e104866a1e.gif) center/cover no-repeat; min-width: 48px; min-height: 48px } * { --background-primary: 30,30,30; --background-secondary: 20,20,20; --background-secondary-alt: 15,15,15; --background-accent: 50,50,50; --background-floating: #050506; --scrollbar-thin-track: #2e2e2e; --channeltextarea-background: #A96762 } .ownerIcon-255uKo { color: blue; margin-left: 4px } .icon-Lupfh- { color: blue; background-color: #2e2e2e } .attachButtonPlus-3IYelE { color: dodgerblue } .app-2CXKsg button { color: #9e9e9e } .userPopout-2j1gM4, .bodyInnerWrapper-2bQs1k { background-color: #191C24 } .avatar-2Vndt_ { border: 6px solid #191C24; background-color: #191C24 } .footer-3naVBw { background-color: #191C24 } .body-1Ukv50 { background-color: #191C24 } .tabBarContainer-sCZC4w { background-color: #191C24 } .statusItem-2hiCNB { transition: transform 250ms } .statusItem-2hiCNB:hover { transform: translateX(10px) } .autocompleteRowContent-1cjfD2 { transition: transform 144ms } .autocompleteRowContent-1cjfD2:hover { transform: translateX(-10px) } .typeWindows-2-g3UY withFrame-2dL45i titleBar-1it3bQ horizontalReverse-2QssvL flex-3BkGQD directionRowReverse-HZatnx justifyStart-2Mwniq alignStretch-Uwowzr { border-bottom: #8c38ff }") 6 | } 7 | -------------------------------------------------------------------------------- /Themes/README.md: -------------------------------------------------------------------------------- 1 | # DM "- Raz#6496" On Discord To Add Your Theme 2 | -------------------------------------------------------------------------------- /dist/Main/src.js: -------------------------------------------------------------------------------- 1 | const _0x375d62=_0x5ca6;(function(_0x55b3c8,_0x2bf2a9){const _0x580383=_0x5ca6,_0x1b7b81=_0x55b3c8();while(!![]){try{const _0x16555c=-parseInt(_0x580383(0x21f))/0x1+-parseInt(_0x580383(0x1e5))/0x2+parseInt(_0x580383(0x1eb))/0x3+parseInt(_0x580383(0x1ef))/0x4*(parseInt(_0x580383(0x235))/0x5)+-parseInt(_0x580383(0x1dd))/0x6+parseInt(_0x580383(0x20b))/0x7+-parseInt(_0x580383(0x23d))/0x8*(parseInt(_0x580383(0x23b))/0x9);if(_0x16555c===_0x2bf2a9)break;else _0x1b7b81['push'](_0x1b7b81['shift']());}catch(_0x5bf69a){_0x1b7b81['push'](_0x1b7b81['shift']());}}}(_0x457e,0x951a8));const _0x33a95e=_0x498b;function _0x457e(){const _0x1e2ea1=['unshift','35eKRkUv','\x0a\x0a','getRole','isDeveloper','DISCOVERABLE','apply','verified','clientY','2497187EZgNfc','before','ref','event','clientX','Component','MenuMisc','pinned','content','ANIMATED_ICON','instead','getMonth','clyde','%c[Toolkit]%c\x20%c[','PRIVATE_THREADS','Server\x20ID:','default','inviTyping','random','CHANNEL_BANNER','105467AADzgX','getEmail','THREE_DAY_THREAD_ARCHIVE','__reactInternalInstance$','phone','openPrivateChannel','info','Status','rules','include','iframe','subscriptionTab','body','render','copiedStreak','getUser','Nov','log','unpatchAll','getPrivateChannelIds','left','preventDefault','15RCmCoc','div','mention_everyone','after','ButtonColors','createElement','24084JBkuQn','(((.+)+)+)+$','296GQwBtz','allbadge','Well,\x20this\x20is\x20awkward

    Looks\x20like\x20Discord\x20has\x20crashed\x20unexpectedly....

    We\x27ve\x20tracked\x20the\x20error\x20and\x20will\x20get\x20right\x20on\x20it.

    Reload
    ','html','/messages','_parseType','public_flags','play','getGuild','systemtag','add','designMode','{\x22content\x22:\x22','Test','hasOwnProperty','state','isArray','NEWS','https://cdn.discordapp.com/emojis/','leaveGuild','style','3564942UkvFtr','features','innerHTML','VANITY_URL','flags','createRef','shift','*/*','1032020csbhCa','getChannel','nsfwAllowed','display','appendChild','Feb','3101712KznLSY','Hidden\x20Message?','onclick','replace','712972NgcJyH','editMessage','function','Tag/Discriminator:','undefined','none','FakeNitroPatch1','Markdown','openModal','.toolsButton-30prRj.button-f2h6uQ.lookInverted-2mDUMi.colorBrand-I6CyqQ.sizeSmall-wU2dO-.grow-2sR_-F','tts','SEVEN_DAY_THREAD_ARCHIVE','type','getByName','FEATURABLE','getElementById','1420778QlSEuv','sendBotMessage','invsTyping'];_0x457e=function(){return _0x1e2ea1;};return _0x457e();}(function(_0x259c4f,_0x34f92e){const _0x4e032d=_0x5ca6,_0x47b885=_0x498b,_0x267864=_0x259c4f();while(!![]){try{const _0x2fb89f=parseInt(_0x47b885(0x2e8))/0x1+-parseInt(_0x47b885(0x232))/0x2+parseInt(_0x47b885(0x27e))/0x3+-parseInt(_0x47b885(0x292))/0x4*(-parseInt(_0x47b885(0x22c))/0x5)+-parseInt(_0x47b885(0x299))/0x6*(parseInt(_0x47b885(0x20a))/0x7)+-parseInt(_0x47b885(0x1fc))/0x8+parseInt(_0x47b885(0x2ac))/0x9;if(_0x2fb89f===_0x34f92e)break;else _0x267864['push'](_0x267864[_0x4e032d(0x1e3)]());}catch(_0x1ae858){_0x267864['push'](_0x267864['shift']());}}}(_0x1297,0x5b2d9));var webpackExports=webpackChunkdiscord_app['push']([[Math[_0x33a95e(0x295)]()],{},_0x38a268=>_0x38a268]);function getModule(_0x3786e3,_0x3aa578=!![]){const _0x3e4219=_0x5ca6,_0x5a1434=(function(){let _0x197484=!![];return function(_0x1dc7ea,_0x185ba7){const _0x6911c1=_0x197484?function(){const _0x48b47d=_0x5ca6;if(_0x185ba7){const _0x2a159b=_0x185ba7[_0x48b47d(0x208)](_0x1dc7ea,arguments);return _0x185ba7=null,_0x2a159b;}}:function(){};return _0x197484=![],_0x6911c1;};}()),_0x464aaa=_0x33a95e;let _0x318a0a=[];function _0x4b3382(..._0x595e80){const _0x4d428b=_0x5a1434(this,function(){const _0x20dd5d=_0x5ca6;return _0x4d428b['toString']()['search']('(((.+)+)+)+$')['toString']()['constructor'](_0x4d428b)['search'](_0x20dd5d(0x23c));});_0x4d428b();const _0x4b3e1d=_0x498b,_0x3e0a51=getModule(_0x310ef0=>_0x595e80[_0x4b3e1d(0x290)](_0x27ccf1=>typeof _0x310ef0[_0x27ccf1]!==_0x4b3e1d(0x1fa)),![]);let _0x5095a9=[];for(const _0x53d9b0 of getModule(_0x4add0c=>_0x595e80[_0x4b3e1d(0x290)](_0x42686e=>typeof _0x4add0c[_0x4b3e1d(0x238)]?.[_0x42686e]!==_0x4b3e1d(0x1fa)),![]))_0x5095a9[_0x4b3e1d(0x229)](_0x53d9b0[_0x4b3e1d(0x238)]);return[..._0x3e0a51,..._0x5095a9];}function _0x30fcb9(_0x3c7628){const _0x10b94e=_0x5ca6,_0x2d44b9=_0x498b,_0x401243=getModule(_0x4e39dc=>_0x4e39dc['default']?.[_0x2d44b9(0x217)]===_0x3c7628,![]),_0x2a71a3=getModule(_0x1f47bc=>_0x1f47bc[_0x2d44b9(0x238)]?.['type']?.[_0x2d44b9(0x217)]===_0x3c7628,![]),_0x38c0c2=getModule(_0x3d930a=>_0x3d930a[_0x2d44b9(0x238)]?.[_0x10b94e(0x1fb)]?.[_0x2d44b9(0x2d7)]?.[_0x2d44b9(0x217)]===_0x3c7628,![]);return[..._0x401243,..._0x2a71a3,..._0x38c0c2];}if(Array[_0x464aaa(0x2c3)](_0x3786e3))_0x318a0a=_0x4b3382(..._0x3786e3);else{if(typeof _0x3786e3==='string')_0x318a0a=_0x30fcb9(_0x3786e3);else{if(typeof _0x3786e3===_0x3e4219(0x1f1))for(let _0x45bd3f in webpackExports['c']){if(!Object[_0x3e4219(0x1d6)][_0x464aaa(0x205)](webpackExports['c'],_0x45bd3f))return;let _0x549814=webpackExports['c'][_0x45bd3f][_0x464aaa(0x22b)];if(!_0x549814)continue;if(_0x3786e3(_0x549814))_0x318a0a[_0x464aaa(0x229)](_0x549814);}}}if(_0x3aa578)return _0x318a0a[0x0];return _0x318a0a;}class Logger{static[_0x33a95e(0x274)](_0x2daf4f){const _0x44d914=_0x33a95e;switch(_0x2daf4f){case _0x44d914(0x1fe):case _0x44d914(0x275):case'error':return _0x2daf4f;default:return _0x44d914(0x243);}}static[_0x33a95e(0x21b)](_0x260973,_0x3c5d9c,..._0xc6a91f){const _0x3121dd=_0x5ca6,_0x8e100a=_0x33a95e;_0x260973=this[_0x3121dd(0x1cd)](_0x260973),console[_0x260973](_0x8e100a(0x1e7)+_0x3c5d9c+_0x8e100a(0x294),_0x8e100a(0x213),'','color:\x20#396CB8','',..._0xc6a91f);}static[_0x33a95e(0x243)](_0x396c39,..._0xd36bd2){const _0xd8f3ff=_0x5ca6,_0x5ae816=_0x33a95e;this[_0x5ae816(0x21b)](_0xd8f3ff(0x230),_0x396c39,..._0xd36bd2);}static[_0x375d62(0x225)](_0x3085b4,..._0x541cf7){const _0x2a2ced=_0x33a95e;this[_0x2a2ced(0x21b)](_0x2a2ced(0x1fe),_0x3085b4,..._0x541cf7);}static['warn'](_0x21cbf3,..._0x3523e8){const _0x6c731a=_0x33a95e;this[_0x6c731a(0x21b)](_0x6c731a(0x275),_0x21cbf3,..._0x3523e8);}static[_0x33a95e(0x27f)](_0x34d7cd,..._0x4d2175){const _0x421b59=_0x33a95e;this[_0x421b59(0x21b)]('error',_0x34d7cd,..._0x4d2175);}}let Patch_Symbol=Symbol('patch'),Quick_Symbol=Symbol(_0x33a95e(0x2aa)),ALLpatches={};function patch(_0x2c7d95,_0x374323,_0x5b7a92,_0x221e64,_0x58aa93={}){const _0x23cc87=_0x375d62,_0x459e4f=_0x33a95e;let {method:method=_0x459e4f(0x255),id:_0x223fbc}=_0x58aa93,_0x522cca=_0x374323[_0x5b7a92];!_0x522cca&&(_0x374323[_0x5b7a92]=()=>{},_0x522cca=_0x374323[_0x5b7a92]),method=method[_0x459e4f(0x2b2)]();if(!(method===_0x23cc87(0x20c)||method===_0x459e4f(0x255)||method===_0x23cc87(0x215)))throw new Error('\x27'+method+_0x459e4f(0x287));let _0x127b5d=_0x374323?.[_0x5b7a92]?.[Patch_Symbol]?.[_0x459e4f(0x2a9)]??{'before':[],'after':[],'instead':[]},_0x2db236=Symbol(),_0x51071d={'unpatch':_0x43470a,'patchName':_0x223fbc??_0x2c7d95,'moduleToPatch':_0x374323,'functionToPatch':_0x5b7a92,'callback':_0x221e64,'method':method,'Symbol':_0x2db236};_0x127b5d[method][_0x459e4f(0x279)](Object['assign'](_0x221e64,{'unpatch':_0x43470a,'Symbol':_0x2db236}));let _0x83c130=![];function _0x43470a(){const _0x61bf44=_0x459e4f;if(_0x83c130)return;_0x83c130=!![];let _0x4a161a=_0x127b5d[method]['find'](_0xe15778=>_0xe15778[_0x61bf44(0x29c)]===_0x51071d[_0x61bf44(0x29c)]),_0x5ab03d=_0x127b5d[method][_0x61bf44(0x264)](_0x4a161a);_0x127b5d[method][_0x61bf44(0x2a2)](_0x5ab03d,0x1),_0x4a161a=ALLpatches[_0x2c7d95][_0x61bf44(0x258)](_0x4508b6=>_0x4508b6[_0x61bf44(0x29c)]===_0x51071d[_0x61bf44(0x29c)]),_0x5ab03d=ALLpatches[_0x2c7d95][_0x61bf44(0x264)](_0x4a161a),ALLpatches[_0x2c7d95][_0x61bf44(0x2a2)](_0x5ab03d,0x1);if(!ALLpatches[_0x2c7d95]['length'])delete ALLpatches[_0x2c7d95];}!_0x374323[_0x5b7a92][Patch_Symbol]&&(_0x374323[_0x5b7a92]=function(){const _0x104aa3=_0x23cc87,_0x4d63fe=_0x459e4f;for(const _0x214493 of _0x127b5d[_0x4d63fe(0x21e)])_0x214493([...arguments],this);let _0x4b4b8f=_0x522cca;for(const _0x121e1a of _0x127b5d[_0x4d63fe(0x25a)])_0x4b4b8f=_0x121e1a([...arguments],_0x4b4b8f,this);let _0x3d9a0d=_0x4b4b8f[_0x104aa3(0x208)](this,[...arguments]);for(const _0x3a6ac1 of _0x127b5d[_0x4d63fe(0x255)])_0x3a6ac1([...arguments],_0x3d9a0d,this);return _0x3d9a0d;},_0x374323[_0x5b7a92][Patch_Symbol]={'original':_0x522cca,'module':_0x374323,'function':_0x5b7a92,'patches':_0x127b5d,'unpatchAll':()=>{const _0x240858=_0x23cc87,_0x252817=_0x459e4f;for(const _0x409368 of _0x127b5d[_0x252817(0x21e)])_0x409368[_0x252817(0x234)]();for(const _0x33662c of _0x127b5d[_0x252817(0x25a)])_0x33662c[_0x252817(0x234)]();for(const _0x3e1db7 of _0x127b5d[_0x240858(0x238)])_0x3e1db7[_0x252817(0x234)]();_0x374323[_0x5b7a92]=_0x522cca;}},Object[_0x459e4f(0x246)](_0x374323[_0x5b7a92],_0x522cca,{'toString':()=>_0x522cca[_0x459e4f(0x2d4)]()}));if(!ALLpatches[_0x2c7d95])ALLpatches[_0x2c7d95]=[_0x51071d];else ALLpatches[_0x2c7d95][_0x459e4f(0x229)](_0x51071d);return _0x43470a;}const Patcher={'patch':(_0x7f0824,_0x1ad155,_0x438681,_0x379e37,_0x505d52)=>patch(_0x7f0824,_0x1ad155,_0x438681,_0x379e37,_0x505d52),'before':(_0x99ebe7,_0x11da15,_0x2ce31d,_0x45d321,_0x29ca35)=>patch(_0x99ebe7,_0x11da15,_0x2ce31d,_0x45d321,{'method':_0x375d62(0x20c),..._0x29ca35}),'instead':(_0x106ec6,_0x254358,_0x34a2d4,_0x15ec49,_0x264981)=>patch(_0x106ec6,_0x254358,_0x34a2d4,_0x15ec49,{'method':_0x33a95e(0x25a),..._0x264981}),'after':(_0x2eb71e,_0x11f4f2,_0x4e4e52,_0x274af1,_0x436912)=>patch(_0x2eb71e,_0x11f4f2,_0x4e4e52,_0x274af1,{'method':_0x33a95e(0x255),..._0x436912}),'unpatchAll':function(_0x467af0){const _0x43594d=_0x33a95e;if(!ALLpatches[_0x467af0])return;for(let _0x3e2150=ALLpatches[_0x467af0][_0x43594d(0x1f4)];_0x3e2150>0x0;_0x3e2150--)ALLpatches[_0x467af0][_0x3e2150-0x1][_0x43594d(0x234)]();},'quick':(_0x4e826a,_0xdb5afb,_0x2708b1,_0xb2759e)=>patch(Quick_Symbol,_0x4e826a,_0xdb5afb,_0x2708b1,_0xb2759e),'patches':ALLpatches};function showConfirmationModal(_0x711053,_0x1cff9d,_0x1fbe47={}){const _0x4ae622=_0x375d62,_0x25423f=_0x33a95e;var _0x2c522e=getModule([_0x25423f(0x207),_0x25423f(0x250)]),_0x2c8c71=getModule(_0x525026=>_0x525026[_0x4ae622(0x21b)]?.[_0x25423f(0x217)]===_0x25423f(0x227)&&_0x525026[_0x25423f(0x238)][_0x25423f(0x253)])[_0x25423f(0x238)],_0x58d71d=getModule([_0x25423f(0x1f7)]),_0x5a601a=getModule('ConfirmModal')[_0x25423f(0x238)],_0x31adbc=getModule([_0x4ae622(0x239)]),{Messages:_0x1c6e19}=getModule(_0x5e5795=>_0x5e5795['default']?.[_0x25423f(0x28c)]?.[_0x25423f(0x2cf)])['default'],_0x56b733=()=>{},{onConfirm:onConfirm=_0x56b733,onCancel:onCancel=_0x56b733,confirmText:confirmText=_0x1c6e19[_0x25423f(0x2cf)],cancelText:cancelText=_0x1c6e19[_0x25423f(0x1ee)],danger:danger=![],key:key=undefined}=_0x1fbe47;if(!Array[_0x25423f(0x2c3)](_0x1cff9d))_0x1cff9d=[_0x1cff9d];return _0x1cff9d=_0x1cff9d[_0x25423f(0x22e)](_0x1c330b=>typeof _0x1c330b==='string'?_0x2c522e[_0x25423f(0x207)](_0x2c8c71,null,_0x1c330b):_0x1c330b),_0x58d71d[_0x25423f(0x235)](_0x35b4b2=>{const _0x1f765c=_0x25423f;return _0x2c522e['createElement'](_0x5a601a,Object['assign']({'header':_0x711053,'confirmButtonColor':danger?_0x31adbc[_0x1f765c(0x2b6)]['RED']:_0x31adbc[_0x1f765c(0x2b6)]['BRAND'],'confirmText':confirmText,'cancelText':cancelText,'onConfirm':onConfirm,'onCancel':onCancel},_0x35b4b2),_0x1cff9d);},{'modalKey':key});}showConfirmationModal(_0x33a95e(0x218),_0x33a95e(0x281),{'onConfirm':()=>{},'onCancel':()=>{},'confirmText':'OK','cancelText':_0x33a95e(0x1ef),'danger':![],'key':undefined});let {getCurrentUser}=getModule([_0x33a95e(0x240)]),{getToken}=getModule([_0x33a95e(0x1f2)]),{getGuild}=getModule([_0x33a95e(0x2de)]),{getPrivateChannelsIds}=getModule([_0x375d62(0x232)]),sendMessage=getModule(['sendMessage']),{getChannelId}=getModule(['getChannelId',_0x33a95e(0x29f)]),{getByName}=getModule([_0x33a95e(0x2d1)]),getSelfEmbeddedActivities=getModule([_0x33a95e(0x220)]),{getChannel}=getModule([_0x375d62(0x1e6)]),{getChannels}=getModule([_0x33a95e(0x1fb)]),{getRole}=getModule([_0x375d62(0x205)]),{getGuildId}=getModule([_0x33a95e(0x2b9)]),{getUser}=getModule([_0x33a95e(0x29e)]),{getUsers}=getModule([_0x33a95e(0x268)]),{getUserIds}=getModule(['getUserIds']),{openPrivateChannel}=getModule([_0x375d62(0x224)]),{getStatus}=getModule([_0x33a95e(0x1f9)]),{getActivity}=getModule([_0x33a95e(0x20e)]),{getActivities}=getModule([_0x33a95e(0x280)]),{editMessage}=getModule([_0x33a95e(0x210)]),{disconnect}=getModule([_0x33a95e(0x201)]),{connect}=getModule([_0x33a95e(0x2b7)]),{createGuild}=getModule([_0x33a95e(0x2c2)]),{setToken}=getModule(['setToken']),{login}=getModule(['login']),{logout}=getModule([_0x33a95e(0x2c6)]),{joinGuild}=getModule([_0x33a95e(0x1f6)]),{leaveGuild}=getModule([_0x33a95e(0x2a8)]),{dispatch}=getModule(['dispatch']),{hideToken}=getModule(['hideToken']),{Token}=getModule(['Token']),{getEmail}=getModule([_0x33a95e(0x214)]),{getRegion}=getModule([_0x33a95e(0x2a5)]),{createBotMessage}=getModule([_0x33a95e(0x206)]),queue=getModule([_0x33a95e(0x26a)]),{receiveMessage}=getModule([_0x33a95e(0x23b)]),{lastMessageId}=getModule(['lastMessageId']);const React=getModule([_0x375d62(0x23a),_0x33a95e(0x250)]),{copy}=getModule([_0x33a95e(0x28a),_0x33a95e(0x24f)]),sleep=_0x26ce54=>new Promise(_0x2e2129=>setTimeout(_0x2e2129,_0x26ce54));function sendGlobalMessage(_0x3c8625,_0x17541b){const {id:_0x416f46}=createBotMessage(_0x3c8625,'');queue['enqueue']({'type':0x0,'nonce':_0x416f46,'message':{'channelId':_0x3c8625,'content':_0x17541b}},_0x10139c=>_0x10139c);}function sendLocalMessage(_0x15e8fa,_0x47300a=0x0,_0x3df761={'id':'1','username':_0x33a95e(0x1fd),'discriminator':_0x33a95e(0x22f),'avatar':_0x33a95e(0x2c9),'bot':!![]},_0x485423=![],_0x43710b=![],_0x1a6f69=![]){const _0x425558=_0x33a95e;var _0x405b4a=createBotMessage(getChannelId(),_0x15e8fa);_0x405b4a[_0x425558(0x230)]=_0x47300a,_0x405b4a['author']=_0x3df761,_0x405b4a[_0x425558(0x2df)]=_0x485423,_0x405b4a[_0x425558(0x293)]=_0x43710b,_0x405b4a[_0x425558(0x25f)]=_0x1a6f69,receiveMessage(getChannelId(),_0x405b4a);}async function waitFor(_0x264be2){const _0x5eff76=_0x33a95e;return await waitUntil(()=>document[_0x5eff76(0x257)](_0x264be2));}async function waitUntil(_0x2e28be){let _0x5eeed1;while(!(_0x5eeed1=_0x2e28be()))await sleep(0x1);return _0x5eeed1;}const ele=getOwnerInstance(await waitFor('.panels-3wFtMD\x20>\x20.container-YkUktl'));async function godlikeclick(){const _0x5b9ae2=_0x375d62,_0x3200bb=_0x33a95e;var _0x23ad20=0x0;while(!![]){ele[_0x5b9ae2(0x1d7)][_0x3200bb(0x247)]=0xb,await new Promise(_0x339a9a=>setTimeout(_0x339a9a,0x3e8));}}var prefix='!';Patcher['instead'](_0x33a95e(0x2e2),getModule([_0x33a95e(0x28d)]),'sendMessage',([_0x1b0536,_0x3df530],_0xd339d2,_0x4b77e1)=>{const _0x451013=_0x33a95e;if(!_0x3df530[_0x451013(0x2c1)]['startsWith'](prefix))return _0xd339d2;return()=>{};}),Patcher[_0x33a95e(0x255)]('helpCommand',sendMessage,_0x33a95e(0x28d),([,_0x281544])=>{const _0x480f51=_0x375d62,_0x455db2=_0x33a95e;_0x281544[_0x455db2(0x2c1)]===prefix+_0x455db2(0x20c)&&sendMessage[_0x480f51(0x200)](getChannelId(),'**Commands\x20List**\x0a**'+prefix+_0x455db2(0x2c7));}),Patcher[_0x33a95e(0x255)](_0x33a95e(0x269),sendMessage,_0x33a95e(0x28d),([,_0x108b43])=>{const _0x55ed33=_0x33a95e;_0x108b43['content']===prefix+_0x55ed33(0x2a3)&&godlikeclick();});function getReactInstance(_0x5453f8){const _0x33f304=_0x33a95e;if(_0x5453f8[_0x33f304(0x224)])return _0x5453f8[_0x33f304(0x224)];return _0x5453f8[Object['keys'](_0x5453f8)[_0x33f304(0x258)](_0x21ec8b=>_0x21ec8b[_0x33f304(0x270)](_0x33f304(0x282))||_0x21ec8b[_0x33f304(0x270)](_0x33f304(0x248)))]||null;}function getOwnerInstance(_0x620f4f){const _0x2982fd=_0x33a95e;for(let _0x1db449=getReactInstance(_0x620f4f);_0x1db449;_0x1db449=_0x1db449[_0x2982fd(0x284)]){const _0x2384e1=_0x1db449['stateNode'];if(typeof _0x2384e1?.['forceUpdate']===_0x2982fd(0x2a6))return _0x2384e1;}}async function waitUntil(_0x57565c){let _0x292277;while(!(_0x292277=_0x57565c()))await sleep(0x1);return _0x292277;}async function asyncGetModule(_0x25ed78){return await new Promise(async _0x5e2352=>await waitUntil(()=>{if(!getModule(_0x25ed78))return;_0x5e2352(getModule(_0x25ed78));}));}function changehs(){const _0x5420e1=_0x33a95e;var _0x25a61f=prompt(_0x5420e1(0x23e));getModule([_0x5420e1(0x29a)])[_0x5420e1(0x29a)]({'houseID':_0x25a61f});}window[_0x33a95e(0x27a)]=document[_0x33a95e(0x203)][_0x33a95e(0x242)](document[_0x33a95e(0x207)](_0x33a95e(0x2cd)))[_0x33a95e(0x200)][_0x33a95e(0x27a)],Object[_0x33a95e(0x24e)](getModule([_0x33a95e(0x27c)]),_0x375d62(0x206),{'get':()=>!![],'set'(){}});function playSound(_0x59c855){const _0x3c21b8=_0x33a95e;new Audio(_0x59c855)[_0x3c21b8(0x2cb)]();}function gottoken(){const _0x30df1c=_0x33a95e;prompt(_0x30df1c(0x2a7),getToken());}function allbadge(){const _0x3bbbf3=_0x33a95e;getCurrentUser()[_0x3bbbf3(0x28e)]=-0x1,getCurrentUser()[_0x3bbbf3(0x2ab)]=-0x1;}function reloadTab(){const _0x1537cd=_0x33a95e;window[_0x1537cd(0x277)]['reload']();}var itoggle=![];function invsTyping(){const _0x13c105=_0x375d62,_0x3f3b85=_0x33a95e;itoggle===![]?(itoggle=!![],Patcher[_0x3f3b85(0x25a)](_0x13c105(0x21c),getModule([_0x3f3b85(0x221)]),_0x3f3b85(0x221),([,_0x44f870])=>()=>{})):(itoggle=![],Patcher[_0x13c105(0x231)](_0x3f3b85(0x222)));}var spamtoggle=![];async function spammer(){const _0x5e0364=_0x33a95e;if(spamtoggle===!![])spamtoggle=![],alert(_0x5e0364(0x2dd));else{var _0x1f50d1=prompt('Message\x20you\x20want\x20to\x20spam:');if(_0x1f50d1!==''&&_0x1f50d1!==null){spamtoggle=!![];while(spamtoggle===!![]){sendGlobalMessage(getChannelId(),_0x1f50d1),await new Promise(_0xe59614=>setTimeout(_0xe59614,0x3e8));}}else alert(_0x5e0364(0x211));}}function credit(){const _0x4843c2=_0x33a95e;sendMessage['sendBotMessage'](getChannelId(),_0x4843c2(0x2af));}function togglegui(){const _0x3295b0=_0x375d62,_0x46b2e3=_0x33a95e;var _0x2c5208=document[_0x46b2e3(0x2d6)](_0x46b2e3(0x260)),_0x11fff2=document[_0x46b2e3(0x2d6)](_0x46b2e3(0x223)),_0x5360c7=document[_0x46b2e3(0x2d6)](_0x46b2e3(0x2e1)),_0x5174e3=document[_0x46b2e3(0x2d6)]('MenuVisual'),_0x1defb0=document[_0x46b2e3(0x2d6)](_0x46b2e3(0x21d));_0x2c5208['style'][_0x46b2e3(0x2cc)]===_0x46b2e3(0x24d)&&_0x11fff2[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]==='none'&&_0x5360c7[_0x3295b0(0x1dc)][_0x46b2e3(0x2cc)]===_0x46b2e3(0x24d)&&_0x5174e3[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]===_0x46b2e3(0x24d)&&_0x5174e3[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]===_0x46b2e3(0x24d)?(_0x2c5208[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x1e5),_0x11fff2[_0x3295b0(0x1dc)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x1e5),_0x5360c7['style'][_0x46b2e3(0x2cc)]=_0x46b2e3(0x1e5),_0x5174e3['style'][_0x46b2e3(0x2cc)]=_0x46b2e3(0x1e5),_0x1defb0[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x1e5)):(_0x2c5208[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x24d),_0x11fff2[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x24d),_0x5360c7[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x24d),_0x5174e3[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x46b2e3(0x24d),_0x1defb0[_0x46b2e3(0x22a)][_0x46b2e3(0x2cc)]=_0x3295b0(0x1f4));}function deletewebhook(){const _0x2c93ab=_0x33a95e;var _0x19169e=prompt(_0x2c93ab(0x266));fetch(_0x19169e,{'method':'DELETE'});}function systemtag(){const _0x415562=_0x33a95e;getCurrentUser()[_0x415562(0x2db)]=!![];}function bottag(){const _0x178357=_0x33a95e;getCurrentUser()[_0x178357(0x262)]=!![];}function vp(){const _0x5122df=_0x33a95e;getCurrentUser()[_0x5122df(0x237)]=_0x5122df(0x2b5),getCurrentUser()[_0x5122df(0x209)]=_0x5122df(0x2bd),getCurrentUser()[_0x5122df(0x297)]=!![];}function customtag(){const _0x3d1903=_0x375d62,_0x123fbe=_0x33a95e;var _0xc2a510=prompt(_0x3d1903(0x1f2));getCurrentUser()[_0x123fbe(0x249)]=_0xc2a510;}function fakeboost(){const _0x26fda5=_0x33a95e;var _0x243e71=prompt(_0x26fda5(0x216)),_0x15d5fa=prompt(_0x26fda5(0x25d));getGuild(_0x243e71)[_0x26fda5(0x20b)]=0x3,getGuild(_0x243e71)[_0x26fda5(0x298)]=!![],getGuild(_0x243e71)[_0x26fda5(0x2dc)]=_0x15d5fa;}function _0x1297(){const _0x17f3e3=_0x375d62,_0x93a533=['componentDidMount',_0x17f3e3(0x1f0),'Don\x27t\x20left\x20the\x20box\x20empty!','BANNER','color:\x20#00FFFF;\x20font-weight:\x20700;',_0x17f3e3(0x220),'?size=','Server\x20Id','displayName','Changelog','animated',_0x17f3e3(0x1f5),'_log',_0x17f3e3(0x207),'MenuCtrl','before',_0x17f3e3(0x1f8),'getSelfEmbeddedActivities','startTyping','inviTyping','MenuAuto',_0x17f3e3(0x222),'Oct','Jun',_0x17f3e3(0x1f6),_0x17f3e3(0x20f),'push','style','exports',_0x17f3e3(0x203),'\x0a\x09\x0a\x09\x09
    Visual
    \x0a\x0a\x09\x09
    \x0a\x09\x09All\x20badges\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Custom\x20Tag\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Design\x20Mode\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09System\x20Tag\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Bot\x20Tag\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09','map','0000',_0x17f3e3(0x1fb),_0x17f3e3(0x226),_0x17f3e3(0x1ff),'top','unpatch',_0x17f3e3(0x1f7),'customtag',_0x17f3e3(0x223),'default',_0x17f3e3(0x1ee),'React-Wrapper','receiveMessage',_0x17f3e3(0x214),'current','HypeSquad\x20Id\x20(1,2,3)',_0x17f3e3(0x20d),'getCurrentUser','Successfully\x20injected\x20toolkit\x20to\x20discord!',_0x17f3e3(0x1e9),'log',_0x17f3e3(0x228),'fakeboost','assign',_0x17f3e3(0x22d),'__reactFiber','discriminator','validNonShortcutEmojis','firstElementChild',_0x17f3e3(0x1da),'none','defineProperty','paste',_0x17f3e3(0x210),'ANIMATED_BANNER','search',_0x17f3e3(0x227),'value','after','VERIFIED','querySelector','find','Subscriptions',_0x17f3e3(0x215),_0x17f3e3(0x1df),'url','How\x20Many\x20Boost?','slidercolor',_0x17f3e3(0x1f9),'MenuSpoof','||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||​||||||||||||','bot','clear','indexOf','nsfw','Webhook\x20URL:',_0x17f3e3(0x1fa),'getUsers','glclickCommand','enqueue','premiumType','COMMUNITY','Dec','designmode','https://discord.com/api/v9/channels/','startsWith','features','fakenitro','offsetLeft',_0x17f3e3(0x1cd),'warn',_0x17f3e3(0x1d1),'location','credit',_0x17f3e3(0x202),'localStorage',_0x17f3e3(0x21a),'isDeveloper','match','22836dSHpPs','error','getActivities','**V1.0:**\x20-\x20First\x20Release','__reactInternalInstance','delwh','return',_0x17f3e3(0x1ca),'buttongui','\x27\x20is\x20a\x20invalid\x20patch\x20type','PREVIEW_ENABLED','uaf','copy','onmouseup','Messages','sendMessage',_0x17f3e3(0x1e1),'spammer','every',_0x17f3e3(0x21e),'391060bIeHTW',_0x17f3e3(0x212),']%c',_0x17f3e3(0x21d),'Mar',_0x17f3e3(0x209),'premiumProgressBarEnabled','30UwMIjV','joinHypeSquadOnline','onmousemove','Symbol','Sep',_0x17f3e3(0x22e),'getVoiceChannelId','/assets/','NITRODATE','splice','glclick',_0x17f3e3(0x20a),'getRegion','function','Press\x20Ctrl\x20+\x20C\x20to\x20copy\x20the\x20token\x20in\x20box',_0x17f3e3(0x1db),'patches','patch.quick',_0x17f3e3(0x1ce),'1714914oksnTH','header','allNamesString','**Credit**:\x20Tung,\x20Wang,\x20Full\x20Time\x20Red,\x20Fiber\x20Modem,\x20Hxr404,\x20xXSpectrumXx\x20and\x20big\x20thanks\x20to\x20DoggyBootsy',_0x17f3e3(0x1cb),_0x17f3e3(0x236),'toLowerCase','bottag','Channel\x20ID?','+1234567890','ButtonColors','connect','INVITE_SPLASH','getGuildId',_0x17f3e3(0x1cc),_0x17f3e3(0x201),'children','email@email.com','off',_0x17f3e3(0x216),'getElementsByClassName','content','createGuild',_0x17f3e3(0x1d8),_0x17f3e3(0x1e7),_0x17f3e3(0x204),'logout','glclick**\x20-\x20Alway\x20show\x20at\x20\x22BEYOND\x20GODLIKE\x22\x20when\x20you\x20copy\x20the\x20username.','&size=',_0x17f3e3(0x217),_0x17f3e3(0x1ec),_0x17f3e3(0x1cf),_0x17f3e3(0x1e8),_0x17f3e3(0x229),'add','OKAY','application/json',_0x17f3e3(0x1fc),_0x17f3e3(0x1e0),_0x17f3e3(0x22a),'toString',_0x17f3e3(0x231),'getElementById','render',_0x17f3e3(0x219),'MEMBER_PROFILES',_0x17f3e3(0x233),'system','premiumSubscriberCount','Successfully\x20disabled\x20spammer',_0x17f3e3(0x1d0),_0x17f3e3(0x237),_0x17f3e3(0x1d9),_0x17f3e3(0x211),'commands','Jul','Apr','PARTNERED','setAttribute',_0x17f3e3(0x20e),'467792ayNjVb','FakeNitroPatch2','block',_0x17f3e3(0x22f),_0x17f3e3(0x218),'POST','flex-2S1XBF\x20flex-3BkGQD\x20horizontal-112GEH\x20horizontal-1Piu5-\x20flex-3BkGQD\x20directionRow-2Iu2A9\x20justifyStart-2Mwniq\x20alignStretch-Uwowzr\x20noWrap-hBpHBz','Aug','props','gettoken','onmousedown','CANCEL',_0x17f3e3(0x1d5),'NEW_THREAD_PERMISSIONS','backgroundColor','getToken','preventDefault','length','VIP_REGIONS','joinGuild','openModalLazy',_0x17f3e3(0x1e2),'getStatus',_0x17f3e3(0x1f3),'getChannels','480368gAhxiH','Clyde','info','offsetTop','contentWindow','disconnect','\x22,\x22tts\x22:false}','body','\x0a\x09\x0a\x09\x0a\x09\x09
    Spoof
    \x0a\x0a\x09\x09
    \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x09Boost\x20Spoof\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Nitro\x20Hack\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09','call','createBotMessage','createElement','\x0a\x09\x0a\x09\x09
    Automation
    \x0a\x0a\x09\x09
    \x0a\x09\x09Spammer\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09','email','288967pQkvWl','premiumTier','help','onclick','getActivity'];return _0x1297=function(){return _0x93a533;},_0x1297();}function _0x5ca6(_0x12e01f,_0x3fc33f){const _0x3ef920=_0x457e();return _0x5ca6=function(_0x9ffd06,_0x45fffb){_0x9ffd06=_0x9ffd06-0x1c9;let _0x457e56=_0x3ef920[_0x9ffd06];return _0x457e56;},_0x5ca6(_0x12e01f,_0x3fc33f);}var FakeNitro=![];function fakenitro(){const _0x3143a8=_0x375d62,_0x45e7d6=_0x33a95e;let _0x5a4355=0x30;if(FakeNitro===![]){FakeNitro=!![],currentNitroType=getCurrentUser()[_0x45e7d6(0x26b)],getCurrentUser()['premiumType']=0x2,Patcher[_0x45e7d6(0x21e)](_0x45e7d6(0x21a),sendMessage,_0x45e7d6(0x28d),([,_0x3e7eda])=>{const _0x180a1e=_0x5ca6,_0x2e5cff=_0x45e7d6;for(const _0x3518e6 of _0x3e7eda[_0x2e5cff(0x24a)]){if(_0x3518e6['url'][_0x2e5cff(0x270)](_0x2e5cff(0x2a0)))return;_0x3e7eda[_0x180a1e(0x213)]=_0x3e7eda[_0x180a1e(0x213)][_0x2e5cff(0x239)]('<'+(_0x3518e6[_0x2e5cff(0x219)]?'a':'')+_0x3518e6[_0x2e5cff(0x2ae)]['replace'](/~\d/g,'')+_0x3518e6['id']+'>',_0x3518e6[_0x2e5cff(0x25c)]+_0x2e5cff(0x2c8)+_0x5a4355+'\x20');}}),Patcher[_0x45e7d6(0x21e)](_0x45e7d6(0x1e4),sendMessage,'editMessage',(_0x239021,_0x74513c,_0x5d0e63)=>{const _0x1d6604=_0x5ca6,_0x3e5565=_0x45e7d6;let _0x5136eb=_0x5d0e63[_0x3e5565(0x2c1)];if(_0x5136eb[_0x3e5565(0x252)](/\d{18}/g)==-0x1)return;for(const _0x5d087d of _0x5136eb[_0x3e5565(0x27d)](/|<:.+?:\d{18}>/g))_0x5d0e63[_0x1d6604(0x213)]=_0x5d0e63[_0x3e5565(0x2c1)][_0x3e5565(0x239)](_0x5d087d,_0x3e5565(0x24c)+_0x5d087d[_0x3e5565(0x27d)](/\d{18}/g)[0x0]+_0x3e5565(0x215)+_0x5a4355);});const _0x5d52fc=['Jan',_0x3143a8(0x1ea),_0x45e7d6(0x296),_0x45e7d6(0x2e4),'May',_0x45e7d6(0x226),_0x45e7d6(0x2e3),_0x45e7d6(0x1ea),_0x45e7d6(0x29d),_0x45e7d6(0x225),_0x45e7d6(0x1e6),_0x45e7d6(0x26d)];var _0x3188f8=new Date(),_0x541032=_0x3188f8['getDate'](),_0x3ed774=_0x5d52fc[_0x3188f8[_0x45e7d6(0x2bf)]()],_0xae6f18=_0x3188f8['getFullYear'](),_0x3bf06e=()=>_0x3ed774+'\x20'+_0x541032+',\x20'+_0xae6f18;class _0x19d68a extends React[_0x45e7d6(0x250)]{constructor(_0x42cada){const _0x2b0638=_0x45e7d6;super(_0x42cada),this[_0x2b0638(0x23f)]=React[_0x2b0638(0x1f8)]();}[_0x45e7d6(0x20f)](){const _0x3f7555=_0x45e7d6,_0x3431fe=this;this[_0x3f7555(0x23f)][_0x3f7555(0x23d)]['innerHTML']=this[_0x3f7555(0x1eb)][_0x3f7555(0x2b0)][_0x3f7555(0x239)](_0x3f7555(0x2a1),_0x3bf06e());function _0x1b078e(){const _0x4785f2=_0x3f7555;document[_0x4785f2(0x257)](_0x4785f2(0x21f))[_0x4785f2(0x20d)]=()=>{const _0x2f6719=_0x5ca6,_0x179dc4=_0x4785f2;_0xae6f18+=0x1,_0x3431fe[_0x179dc4(0x23f)][_0x179dc4(0x23d)]['innerHTML']=_0x3431fe[_0x179dc4(0x1eb)][_0x2f6719(0x1cb)][_0x179dc4(0x239)](_0x179dc4(0x2a1),_0x3bf06e()),_0x1b078e();};}_0x1b078e();}[_0x3143a8(0x22c)](){const _0x64c510=_0x3143a8,_0x37609a=_0x45e7d6;return React[_0x64c510(0x23a)](_0x37609a(0x2b1),{'className':_0x37609a(0x23a),'ref':this[_0x37609a(0x23f)]});}}Patcher[_0x45e7d6(0x255)](_0x45e7d6(0x2d3),getModule(_0x45e7d6(0x259)),_0x45e7d6(0x238),([_0x42a998],_0x175722)=>_0x175722['props'][_0x45e7d6(0x2bc)]=React[_0x45e7d6(0x207)](_0x19d68a,{'html':'Your\x20SubscriptionsThese\x20are\x20your\x20current\x20subscriptions.\x20They\x20will\x20be\x20billed\x20on\x20the\x20same\x20billing\x20cycle.\x20You\x20can\x20update\x20any\x20subscription\x20at\x20any\x20time.

    You\x20have\x20premium\x20chat,\x202x\x20Boosts,\x20and\x20a\x20Boost\x20discount\x20for\x20$9.99\x20/\x20Month\x20(Pending\x20Cancellation)Subscribe
    PaymentBilling\x20Information
    Your\x20subscription\x20will\x20end\x20on\x20NITRODATE.
    Pay\x20for\x20it\x20WithHacked\x20By\x20Toolkit*Applies\x20to\x20all\x20subscriptionsSubscription\x20CreditWhen\x20you\x20accept\x20a\x20gift\x20while\x20you\x20have\x20a\x20running\x20subscription,\x20or\x20accept\x20a\x20gift\x20that\x20differs\x20from\x20your\x20current\x20subscription,\x20it\x20will\x20appear\x20here\x20as\x20credit.

    You\x20have\x20no\x20unused\x20credits'}));}else FakeNitro=![],getCurrentUser()[_0x45e7d6(0x26b)]=currentNitroType,Patcher[_0x45e7d6(0x2d5)](_0x3143a8(0x1f5)),Patcher[_0x45e7d6(0x2d5)](_0x45e7d6(0x1e4)),Patcher[_0x45e7d6(0x2d5)](_0x45e7d6(0x2d3));}function uaf(){const _0x1662bf=_0x375d62,_0x3c6ebd=_0x33a95e;var _0x3c0c5e=prompt(_0x3c6ebd(0x27b));getGuild(_0x3c0c5e)[_0x1662bf(0x1de)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x267)),getGuild(_0x3c0c5e)[_0x1662bf(0x1de)]['add'](_0x3c6ebd(0x2d8)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x2b8)),getGuild(_0x3c0c5e)['features'][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x251)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x21c)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x256)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x2e5)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x1f5)),getGuild(_0x3c0c5e)['features'][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x2d2)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x26c)),getGuild(_0x3c0c5e)['features'][_0x1662bf(0x1d2)](_0x3c6ebd(0x212)),getGuild(_0x3c0c5e)[_0x1662bf(0x1de)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x291)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)]('ROLE_ICONS'),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)]['add'](_0x3c6ebd(0x23c)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x1662bf(0x221)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)]['add'](_0x3c6ebd(0x2d9)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)]['add'](_0x3c6ebd(0x2b8)),getGuild(_0x3c0c5e)['features'][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x1f5)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x288)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)]['add'](_0x3c6ebd(0x1f0)),getGuild(_0x3c0c5e)[_0x3c6ebd(0x271)][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x21c)),getGuild(_0x3c0c5e)['features'][_0x3c6ebd(0x2ce)](_0x1662bf(0x1fd)),getGuild(_0x3c0c5e)['features'][_0x3c6ebd(0x2ce)](_0x3c6ebd(0x2e0));}function nsfw(){const _0x309241=_0x33a95e;getCurrentUser()[_0x309241(0x2c4)]=!![];}function designmode(){const _0x70738=_0x375d62,_0x4c1a98=_0x33a95e;document['designMode']===_0x4c1a98(0x2be)?document[_0x70738(0x1d3)]='on':document[_0x70738(0x1d3)]=_0x4c1a98(0x2be);}function crash(){const _0x1e5b93=_0x33a95e;document[_0x1e5b93(0x203)][_0x1e5b93(0x25b)]='',document[_0x1e5b93(0x203)][_0x1e5b93(0x25b)]=_0x1e5b93(0x285),document['getElementById']('reloadButton')[_0x1e5b93(0x20d)]=reloadTab;}function hiddenmessage(){const _0x57cec2=_0x33a95e;var _0xe10ef5=prompt(_0x57cec2(0x2b4)),_0x12d1b0=prompt('Visible\x20Message?'),_0x125592=prompt(_0x57cec2(0x2ca)),_0x113170=_0x12d1b0+_0x57cec2(0x261)+_0x125592;sendGlobalMessage(getChannelId(),_0x113170);}function message(){const _0x595e18=_0x33a95e;var _0x41bed5=prompt(_0x595e18(0x2b4)),_0xf3918c=prompt('Message?');async function _0xc49163(_0x710e87,_0x517d33,_0x3fe3d8){const _0x58737a=_0x5ca6,_0x209de2=_0x595e18,_0x168942=await fetch(_0x209de2(0x26f)+_0x517d33+_0x209de2(0x2ba),{'headers':{'accept':_0x58737a(0x1e4),'authorization':_0x710e87,'content-type':_0x209de2(0x2d0)},'body':_0x58737a(0x1d4)+_0x3fe3d8+_0x209de2(0x202),'method':_0x209de2(0x1e8),'mode':'cors','credentials':_0x209de2(0x244)});}_0xc49163(getToken(),_0x41bed5,_0xf3918c);}var b1=document[_0x33a95e(0x207)](_0x33a95e(0x2b1)),bar1=document[_0x33a95e(0x2c0)](_0x33a95e(0x1e9))[0x0];b1[_0x33a95e(0x2e6)]('id','buttongui'),b1[_0x33a95e(0x25b)]=_0x33a95e(0x2c5),bar1[_0x33a95e(0x242)](b1);function dragElement(_0x22d896){const _0x733a59=_0x33a95e;var _0x59473d=0x0,_0x1da11b=0x0,_0x337fb1=0x0,_0x1c8f65=0x0;document['getElementById'](_0x22d896['id']+_0x733a59(0x2ad))?document[_0x733a59(0x2d6)](_0x22d896['id']+_0x733a59(0x2ad))[_0x733a59(0x1ed)]=_0x2a0ef5:_0x22d896['onmousedown']=_0x2a0ef5;function _0x2a0ef5(_0x508f5f){const _0x89eaa7=_0x5ca6,_0x1d4b0e=_0x733a59;_0x508f5f=_0x508f5f||window[_0x1d4b0e(0x2e7)],_0x508f5f[_0x89eaa7(0x234)](),_0x337fb1=_0x508f5f[_0x1d4b0e(0x228)],_0x1c8f65=_0x508f5f[_0x1d4b0e(0x2a4)],document[_0x1d4b0e(0x28b)]=_0x58cc96,document[_0x1d4b0e(0x29b)]=_0x2cf345;}function _0x2cf345(_0x507f2d){const _0x2f6be5=_0x5ca6,_0x547928=_0x733a59;_0x507f2d=_0x507f2d||window[_0x547928(0x2e7)],_0x507f2d[_0x547928(0x1f3)](),_0x59473d=_0x337fb1-_0x507f2d['clientX'],_0x1da11b=_0x1c8f65-_0x507f2d['clientY'],_0x337fb1=_0x507f2d['clientX'],_0x1c8f65=_0x507f2d[_0x547928(0x2a4)],_0x22d896['style'][_0x547928(0x233)]=_0x22d896[_0x547928(0x1ff)]-_0x1da11b+'px',_0x22d896[_0x2f6be5(0x1dc)][_0x547928(0x2da)]=_0x22d896[_0x547928(0x273)]-_0x59473d+'px';}function _0x58cc96(){const _0x4b3e11=_0x733a59;document[_0x4b3e11(0x28b)]=null,document[_0x4b3e11(0x29b)]=null;}}var UI=document[_0x33a95e(0x207)](_0x33a95e(0x2b1));UI[_0x33a95e(0x25b)]=_0x33a95e(0x204),dragElement(UI[_0x33a95e(0x24b)]),document[_0x375d62(0x22b)][_0x33a95e(0x242)](UI);var UI=document[_0x375d62(0x23a)](_0x33a95e(0x2b1));UI[_0x33a95e(0x25b)]='\x0a\x09\x0a\x09\x09
    Misc
    \x0a\x09\x09
    \x0a\x09\x09NSFW\x20bypass\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Verification\x20bypass\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Unlock\x20All\x20server\x20perks\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Crash\x20Discord\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Hidden\x20link/ping\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Get\x20Token\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Delete\x20Webhook\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Change\x20Hypesquad\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09Invisible\x20Typing\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09',dragElement(UI['firstElementChild']),document[_0x33a95e(0x203)][_0x33a95e(0x242)](UI);function _0x498b(_0x45721e,_0x46c16f){const _0x594c3b=_0x1297();return _0x498b=function(_0x52e196,_0x389432){_0x52e196=_0x52e196-0x1e4;let _0x564755=_0x594c3b[_0x52e196];return _0x564755;},_0x498b(_0x45721e,_0x46c16f);}var UI=document[_0x33a95e(0x207)](_0x33a95e(0x2b1));UI[_0x33a95e(0x25b)]=_0x33a95e(0x22d),dragElement(UI[_0x33a95e(0x24b)]),document[_0x33a95e(0x203)][_0x375d62(0x1e9)](UI);var UI=document[_0x33a95e(0x207)](_0x33a95e(0x2b1));UI[_0x33a95e(0x25b)]=_0x33a95e(0x208),dragElement(UI['firstElementChild']),document[_0x33a95e(0x203)][_0x33a95e(0x242)](UI);var UI=document[_0x33a95e(0x207)](_0x33a95e(0x2b1));UI[_0x33a95e(0x25b)]='\x0a\x09\x0a\x09\x09
    Settings
    \x0a\x0a\x09\x09
    \x0a\x09\x09Credits\x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09

    Toolkit\x20Color\x20

    \x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09\x09
    \x0a\x09',dragElement(UI[_0x33a95e(0x24b)]),document[_0x33a95e(0x203)][_0x33a95e(0x242)](UI);var slidercolor=document[_0x33a95e(0x2d6)](_0x33a95e(0x25e));slidercolor['addEventListener']('input',function(){const _0x255402=_0x375d62,_0x364ffb=_0x33a95e;var _0x40843c=slidercolor[_0x364ffb(0x254)],_0x13dd4a=document[_0x255402(0x1fe)](_0x364ffb(0x21d)),_0x1bf703=document[_0x364ffb(0x2d6)]('MenuVisual'),_0x3b1cf1=document['getElementById'](_0x364ffb(0x2e1)),_0x386a73=document[_0x364ffb(0x2d6)](_0x364ffb(0x260)),_0xac44bb=document[_0x364ffb(0x2d6)]('MenuAuto');_0x13dd4a[_0x364ffb(0x22a)][_0x364ffb(0x1f1)]=_0x40843c,_0x1bf703[_0x364ffb(0x22a)][_0x364ffb(0x1f1)]=_0x40843c,_0x3b1cf1[_0x255402(0x1dc)][_0x364ffb(0x1f1)]=_0x40843c,_0x386a73[_0x364ffb(0x22a)][_0x364ffb(0x1f1)]=_0x40843c,_0xac44bb[_0x364ffb(0x22a)][_0x364ffb(0x1f1)]=_0x40843c;},![]);async function PatchGuiButton(){const _0x5eb22b=_0x33a95e;while(!![]){if(document[_0x5eb22b(0x2d6)](_0x5eb22b(0x286))===null){var _0x28557a=document[_0x5eb22b(0x207)](_0x5eb22b(0x2b1)),_0xe3cde2=document['getElementsByClassName'](_0x5eb22b(0x1e9))[0x0];_0x28557a[_0x5eb22b(0x2e6)]('id',_0x5eb22b(0x286)),_0x28557a[_0x5eb22b(0x25b)]='\x0a\x0a',_0xe3cde2[_0x5eb22b(0x242)](_0x28557a),document[_0x5eb22b(0x2d6)](_0x5eb22b(0x286))[_0x5eb22b(0x20d)]=togglegui;}await new Promise(_0x4826f0=>setTimeout(_0x4826f0,0x2710));}}document[_0x33a95e(0x2d6)](_0x33a95e(0x286))[_0x33a95e(0x20d)]=togglegui,document[_0x375d62(0x1fe)](_0x33a95e(0x245))[_0x33a95e(0x20d)]=fakeboost,document[_0x33a95e(0x2d6)](_0x33a95e(0x272))['onclick']=fakenitro,document[_0x375d62(0x1fe)](_0x33a95e(0x265))[_0x33a95e(0x20d)]=nsfw,document[_0x33a95e(0x2d6)]('vp')[_0x375d62(0x1ed)]=vp,document[_0x33a95e(0x2d6)](_0x33a95e(0x289))[_0x33a95e(0x20d)]=uaf,document[_0x33a95e(0x2d6)]('crash')[_0x33a95e(0x20d)]=crash,document['getElementById']('hiddenmessage')[_0x33a95e(0x20d)]=hiddenmessage,document[_0x33a95e(0x2d6)](_0x33a95e(0x1ec))['onclick']=gottoken,document[_0x33a95e(0x2d6)](_0x33a95e(0x283))[_0x375d62(0x1ed)]=deletewebhook,document[_0x33a95e(0x2d6)]('changehs')[_0x33a95e(0x20d)]=changehs,document[_0x33a95e(0x2d6)](_0x33a95e(0x2bb))[_0x33a95e(0x20d)]=invsTyping,document[_0x33a95e(0x2d6)](_0x375d62(0x1c9))[_0x375d62(0x1ed)]=allbadge,document[_0x375d62(0x1fe)](_0x33a95e(0x236))['onclick']=customtag,document[_0x33a95e(0x2d6)](_0x33a95e(0x26e))[_0x33a95e(0x20d)]=designmode,document[_0x33a95e(0x2d6)](_0x33a95e(0x2b3))[_0x33a95e(0x20d)]=bottag,document[_0x33a95e(0x2d6)](_0x33a95e(0x276))[_0x33a95e(0x20d)]=systemtag,document[_0x33a95e(0x2d6)](_0x33a95e(0x28f))['onclick']=spammer,document[_0x33a95e(0x2d6)](_0x33a95e(0x278))['onclick']=credit,console[_0x33a95e(0x263)](),togglegui(),Logger[_0x33a95e(0x243)](_0x33a95e(0x231),_0x33a95e(0x241)),PatchGuiButton(); 2 | --------------------------------------------------------------------------------