├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── plugin-information-issue.md └── workflows │ └── check-badges.yml ├── .gitignore ├── Assets ├── 2b2t.vc Rusherhack │ ├── HudDisplay.png │ └── HudSettings.png ├── AutoAnvilRename │ ├── Module.png │ └── ModuleInfo.png ├── AutoBucket │ └── module.png ├── ContainerTweaks │ └── ModuleSettings.png ├── Contributing │ ├── Clone.jpg │ ├── Fork.png │ ├── NewBranch.png │ ├── NewPullRequest.png │ └── PullRequestsTab.png ├── GarlicSight │ ├── blockinfo.png │ ├── entityinfo.png │ └── hudinfo.png ├── HDisabler │ └── HDisabler.png ├── LightningPop │ └── Module.png ├── NBT-viewer │ └── NBT-viewer.png ├── RusherHack-CustomHUDElement │ ├── HudElement.png │ └── HudSettings.png ├── RusherHacks │ └── rh_head.png ├── rusher-elytra-eta │ └── HudElement.png ├── rusherNodusTheme │ └── NodusGUI.png ├── rusherhack-instance-info-fork │ ├── Module.png │ ├── PlayerHead.png │ └── WindowInfo.png ├── rusherhack-instance-info │ ├── Module.png │ ├── PlayerHead.png │ └── WindowInfo.png ├── rusherhack-messenger │ └── rusherhack-messenger-demo.jpg └── spotify │ ├── HudElement.png │ └── Module.png ├── CONTRIBUTING.md ├── PLUGINS.md ├── README.md └── THEMES.md /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: "Plugin Information Issue" 4 | url: "/RusherDevelopment/rusherhack-plugins/issues/new?template=plugin_info_issue_template.md" 5 | about: "Report incorrect plugin information, broken links, or formatting errors in the collection repository." 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/plugin-information-issue.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Plugin Information Issue 3 | about: Template for reporting incorrect release dates, broken .jar URLs, typos, and 4 | media errors in RusherHacks plugins, with priority settings. 5 | title: "[ISSUE]" 6 | labels: issue 7 | assignees: GarlicRot 8 | 9 | --- 10 | 11 | ### RUSHERHACK PLUGIN COLLECTION 12 | 13 | --- 14 | 15 | **Issue Type:** 16 | - [ ] Incorrect Release Date 17 | - [ ] Incorrect .jar URL 18 | - [ ] Typo/Formatting Issue 19 | - [ ] Incorrect Screenshot/Video 20 | - [ ] Other (Please specify) 21 | 22 | **Plugin Name:** 23 | Specify the name of the plugin related to this issue. 24 | 25 | **Description:** 26 | Provide a brief description of the issue. Include any relevant details that can help in identifying and correcting the problem. 27 | 28 | **Correct Information (if available):** 29 | If you have the correct information (e.g., correct date, URL, text, etc.), please provide it here. 30 | 31 | **Additional Context:** 32 | Add any other context or details that might help in resolving the issue. 33 | 34 | **Priority:** 35 | - [ ] Low 36 | - [ ] Medium 37 | - [ ] High 38 | 39 | --- 40 | -------------------------------------------------------------------------------- /.github/workflows/check-badges.yml: -------------------------------------------------------------------------------- 1 | name: Validate Latest Release URLs 2 | 3 | on: 4 | workflow_dispatch: # Allows manual triggering 5 | 6 | jobs: 7 | check-badges: 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - name: Checkout Repository 12 | uses: actions/checkout@v4 13 | with: 14 | fetch-depth: 0 # Ensures full branch history 15 | 16 | - name: Fetch badges.json from gh-pages 17 | run: | 18 | git fetch --all 19 | git checkout --track origin/gh-pages || git checkout gh-pages 20 | cp badges.json ../badges.json # Move file to main working directory 21 | 22 | - name: Install jq 23 | run: sudo apt-get install jq 24 | 25 | - name: Check Latest Release URLs 26 | id: check-releases 27 | env: 28 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use GitHub Actions built-in token 29 | run: | 30 | BADGES_FILE="../badges.json" 31 | OUTDATED_PLUGINS_FILE="/tmp/outdated_plugins_flag" 32 | REPORT_FILE="outdated_plugins_report.md" 33 | 34 | # Initialize the flag file 35 | echo "0" > $OUTDATED_PLUGINS_FILE 36 | 37 | # Initialize the report file 38 | echo "### 📢 Outdated Plugin Report" > $REPORT_FILE 39 | echo "@GarlicRot, the following plugins have outdated release URLs:" >> $REPORT_FILE 40 | echo "" >> $REPORT_FILE 41 | 42 | echo "🔍 Checking latest releases for themes and plugins..." 43 | 44 | for SECTION in "themes" "plugins"; do 45 | cat $BADGES_FILE | jq -c --arg section "$SECTION" '.[$section][]' | while read entry; do 46 | NAME=$(echo $entry | jq -r '.name') 47 | REPO_URL=$(echo $entry | jq -r '.url') 48 | LATEST_STORED=$(echo $entry | jq -r '.latestReleaseUrl') 49 | 50 | OWNER=$(echo $REPO_URL | awk -F '/' '{print $(NF-1)}') 51 | REPO=$(echo $REPO_URL | awk -F '/' '{print $NF}') 52 | API_URL="https://api.github.com/repos/$OWNER/$REPO/releases/latest" 53 | 54 | echo "Checking: $OWNER/$REPO" 55 | 56 | # Fetch latest release info (with authentication) 57 | RESPONSE=$(curl -s -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" $API_URL) 58 | 59 | # Ensure the API response is valid 60 | if [[ "$RESPONSE" == "null" || -z "$RESPONSE" ]]; then 61 | echo "⚠️ GitHub API returned null response for $OWNER/$REPO. Skipping..." 62 | continue 63 | fi 64 | 65 | # Check if the repository has any releases 66 | RELEASE_CHECK=$(echo "$RESPONSE" | jq -r 'if .tag_name then "exists" else "no_release" end') 67 | 68 | if [[ "$RELEASE_CHECK" == "no_release" ]]; then 69 | echo "⚠️ No releases found for $OWNER/$REPO. Skipping..." 70 | continue 71 | fi 72 | 73 | # Ensure assets exist before trying to extract them 74 | ASSETS_EXIST=$(echo "$RESPONSE" | jq -r 'if .assets then "exists" else "no_assets" end') 75 | 76 | if [[ "$ASSETS_EXIST" == "no_assets" ]]; then 77 | echo "⚠️ No assets found in the latest release for $OWNER/$REPO. Skipping..." 78 | continue 79 | fi 80 | 81 | # Extract the first .jar file URL 82 | LATEST_RELEASE=$(echo "$RESPONSE" | jq -r '[.assets[] | select(.name | endswith(".jar"))][0].browser_download_url') 83 | 84 | # Skip if no JAR file is found 85 | if [[ "$LATEST_RELEASE" == "null" || -z "$LATEST_RELEASE" ]]; then 86 | echo "⚠️ No JAR file found for $OWNER/$REPO. Skipping..." 87 | continue 88 | fi 89 | 90 | # Compare stored latest release URL with actual one 91 | if [[ "$LATEST_STORED" != "$LATEST_RELEASE" ]]; then 92 | echo "::error file=badges.json,title=Outdated Plugin::$OWNER/$REPO is outdated." 93 | 94 | # Append plugin details to the report file 95 | echo "🔹 **Plugin Name**: $NAME" >> $REPORT_FILE 96 | echo "🔹 **Stored URL**: [$LATEST_STORED]($LATEST_STORED)" >> $REPORT_FILE 97 | echo "🔹 **Latest URL**: [$LATEST_RELEASE]($LATEST_RELEASE)" >> $REPORT_FILE 98 | echo "" >> $REPORT_FILE 99 | 100 | # Set the outdated flag 101 | echo "1" > $OUTDATED_PLUGINS_FILE 102 | fi 103 | done 104 | done 105 | 106 | # Debug: Print the report to console 107 | echo "Generated Report:" 108 | cat $REPORT_FILE 109 | 110 | # Export the outdated flag 111 | if [[ $(cat $OUTDATED_PLUGINS_FILE) == "1" ]]; then 112 | echo "outdated=1" >> $GITHUB_ENV 113 | else 114 | echo "outdated=0" >> $GITHUB_ENV 115 | fi 116 | 117 | - name: Debug `outdated` Variable 118 | run: echo "outdated=$outdated" 119 | 120 | - name: Debug Report Content 121 | run: cat outdated_plugins_report.md 122 | 123 | - name: Create GitHub Issue Notification 124 | if: env.outdated == '1' 125 | uses: peter-evans/create-issue-from-file@v4 126 | with: 127 | token: ${{ secrets.GITHUB_TOKEN }} 128 | title: "🚨 Outdated Plugin Report" 129 | content-filepath: outdated_plugins_report.md 130 | labels: bug 131 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | package.json 4 | -------------------------------------------------------------------------------- /Assets/2b2t.vc Rusherhack/HudDisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/2b2t.vc Rusherhack/HudDisplay.png -------------------------------------------------------------------------------- /Assets/2b2t.vc Rusherhack/HudSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/2b2t.vc Rusherhack/HudSettings.png -------------------------------------------------------------------------------- /Assets/AutoAnvilRename/Module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/AutoAnvilRename/Module.png -------------------------------------------------------------------------------- /Assets/AutoAnvilRename/ModuleInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/AutoAnvilRename/ModuleInfo.png -------------------------------------------------------------------------------- /Assets/AutoBucket/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/AutoBucket/module.png -------------------------------------------------------------------------------- /Assets/ContainerTweaks/ModuleSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/ContainerTweaks/ModuleSettings.png -------------------------------------------------------------------------------- /Assets/Contributing/Clone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/Contributing/Clone.jpg -------------------------------------------------------------------------------- /Assets/Contributing/Fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/Contributing/Fork.png -------------------------------------------------------------------------------- /Assets/Contributing/NewBranch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/Contributing/NewBranch.png -------------------------------------------------------------------------------- /Assets/Contributing/NewPullRequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/Contributing/NewPullRequest.png -------------------------------------------------------------------------------- /Assets/Contributing/PullRequestsTab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/Contributing/PullRequestsTab.png -------------------------------------------------------------------------------- /Assets/GarlicSight/blockinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/GarlicSight/blockinfo.png -------------------------------------------------------------------------------- /Assets/GarlicSight/entityinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/GarlicSight/entityinfo.png -------------------------------------------------------------------------------- /Assets/GarlicSight/hudinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/GarlicSight/hudinfo.png -------------------------------------------------------------------------------- /Assets/HDisabler/HDisabler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/HDisabler/HDisabler.png -------------------------------------------------------------------------------- /Assets/LightningPop/Module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/LightningPop/Module.png -------------------------------------------------------------------------------- /Assets/NBT-viewer/NBT-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/NBT-viewer/NBT-viewer.png -------------------------------------------------------------------------------- /Assets/RusherHack-CustomHUDElement/HudElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/RusherHack-CustomHUDElement/HudElement.png -------------------------------------------------------------------------------- /Assets/RusherHack-CustomHUDElement/HudSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/RusherHack-CustomHUDElement/HudSettings.png -------------------------------------------------------------------------------- /Assets/RusherHacks/rh_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/RusherHacks/rh_head.png -------------------------------------------------------------------------------- /Assets/rusher-elytra-eta/HudElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusher-elytra-eta/HudElement.png -------------------------------------------------------------------------------- /Assets/rusherNodusTheme/NodusGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherNodusTheme/NodusGUI.png -------------------------------------------------------------------------------- /Assets/rusherhack-instance-info-fork/Module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-instance-info-fork/Module.png -------------------------------------------------------------------------------- /Assets/rusherhack-instance-info-fork/PlayerHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-instance-info-fork/PlayerHead.png -------------------------------------------------------------------------------- /Assets/rusherhack-instance-info-fork/WindowInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-instance-info-fork/WindowInfo.png -------------------------------------------------------------------------------- /Assets/rusherhack-instance-info/Module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-instance-info/Module.png -------------------------------------------------------------------------------- /Assets/rusherhack-instance-info/PlayerHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-instance-info/PlayerHead.png -------------------------------------------------------------------------------- /Assets/rusherhack-instance-info/WindowInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-instance-info/WindowInfo.png -------------------------------------------------------------------------------- /Assets/rusherhack-messenger/rusherhack-messenger-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/rusherhack-messenger/rusherhack-messenger-demo.jpg -------------------------------------------------------------------------------- /Assets/spotify/HudElement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/spotify/HudElement.png -------------------------------------------------------------------------------- /Assets/spotify/Module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RusherDevelopment/rusherhack-plugins/f07793557fc3c1a1b98971ad6eec0550a97b2c0e/Assets/spotify/Module.png -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to the RusherHacks Plugin Collection 2 | 3 | Thank you for your interest in contributing to the **RusherHacks Plugin Collection**! 4 | Your contributions help improve and expand the collection, making it more useful for everyone. 5 | Whether you're submitting a new plugin, fixing typos, or enhancing existing entries, your support is greatly appreciated. 6 | 7 | > [!NOTE] 8 | > Please follow the style and formatting guidelines described below to ensure consistency across all submissions. 9 | 10 | > [!TIP] 11 | > You can preview your `PLUGINS.md` before submitting by using the GitHub web interface or Markdown preview extensions. 12 | 13 | ## How to Contribute 14 | 15 | 1. **Fork the repository** 16 | Click the "Fork" button on the top right of the repository page to create a copy of this repository on your GitHub account. 17 | Fork Button 18 | 19 | 2. **Clone the repository** 20 | Clone the forked repository to your local machine. 21 | Clone Button 22 | 23 | 3. **Create a new branch** 24 | Create a new branch for your contribution. 25 | Create Branch 26 | 27 | 4. **Make changes** 28 | Make your changes to the codebase. Ensure your code follows the existing style and conventions. 29 | 30 | 5. **Commit your changes** 31 | Commit your changes with a clear and descriptive commit message. 32 | 33 | 6. **Push to your fork** 34 | Push your changes to your forked repository. 35 | 36 | 7. **Open a pull request** 37 | Open a pull request to the main repository. Go to the "Pull Requests" tab on the main repository. 38 | Pull Request Tab 39 | Click "New Pull Request". 40 | New Pull Request 41 | 42 | 8. **Describe your changes** 43 | Clearly describe the changes you have made and any relevant context in the pull request description. 44 | 45 | > [!WARNING] 46 | > Make sure not to remove or overwrite existing entries unless it's a verified fix. Always double-check the `badges.json` index value before submitting. 47 | 48 | ## Example Plugin Entries 49 | 50 |
51 | Explanation of Placeholders 52 | 53 | - **PLUGIN_NAME**: The name of your plugin 54 | - **YOUR_USERNAME**: Your GitHub username 55 | - **YOUR_PLUGIN_REPO**: The name of your plugin's GitHub repository 56 | - **PLUGIN_INDEX**: Index of your plugin in the `badges.json` file 57 | - **BADGE_COLOR**: `"green"` if plugin has a release, `"red"` otherwise 58 | - **LATEST_VERSION**: Latest release version 59 | - **LATEST_RELEASE_DATE**: Format `YYYY-MM-DD` 60 | - **SCREENSHOT1.png**: Image file name 61 | - **CREATOR_URL**: Creator's GitHub URL 62 |
63 | 64 | --- 65 | 66 | ### **PLUGINS.md Format** 67 | 68 | #### **Plugin Entry (with or without Screenshots)** 69 | 70 | ```markdown 71 | - ### [PLUGIN_NAME](https://github.com/YOUR_USERNAME/YOUR_PLUGIN_REPO)
72 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[PLUGIN_INDEX].releaseDate&label=Latest%20Release&color=BADGE_COLOR)](https://github.com/YOUR_USERNAME/YOUR_PLUGIN_REPO/releases) 73 | [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/YOUR_USERNAME/YOUR_PLUGIN_REPO/total)](https://github.com/YOUR_USERNAME/YOUR_PLUGIN_REPO/releases/download/LATEST_VERSION/YOUR_PLUGIN_NAME-LATEST_VERSION.jar) 74 | ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) 75 | 76 | **Creator**: [YOUR_USERNAME](https://github.com/YOUR_USERNAME) 77 | 78 | YOUR_PLUGIN_DESCRIPTION 79 | 80 |
81 | Show Screenshots 82 |

83 | Screenshot 1 84 | Screenshot 2 85 |

86 |
87 | ``` 88 | 89 | > [!TIP] 90 | > If your plugin is a **Core Plugin**, add the Core Plugin badge after the release badge like this: 91 | > `![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue)` 92 | 93 | --- 94 | 95 | ### badges.json Plugin Example 96 | 97 | ```json 98 | { 99 | "name": "PLUGIN_NAME", 100 | "url": "https://github.com/YOUR_USERNAME/YOUR_PLUGIN_REPO", 101 | "releaseUrl": "https://github.com/YOUR_USERNAME/YOUR_PLUGIN_REPO/releases", 102 | "latestReleaseUrl": "https://github.com/YOUR_USERNAME/YOUR_PLUGIN_REPO/releases/download/LATEST_VERSION/YOUR_PLUGIN_NAME-LATEST_VERSION.jar", 103 | "releaseDate": "LATEST_RELEASE_DATE", 104 | "color": "BADGE_COLOR", 105 | "description": "YOUR_PLUGIN_DESCRIPTION", 106 | "creator": { 107 | "name": "YOUR_USERNAME", 108 | "url": "https://github.com/YOUR_USERNAME", 109 | "avatarUrl": "https://github.com/YOUR_USERNAME.png?size=20" 110 | }, 111 | "screenshots": [ 112 | { 113 | "type": "image", 114 | "url": "./Assets/YOUR_PLUGIN_NAME/SCREENSHOT1.png", 115 | "alt": "Screenshot 1", 116 | "width": 250 117 | }, 118 | { 119 | "type": "image", 120 | "url": "./Assets/YOUR_PLUGIN_NAME/SCREENSHOT2.png", 121 | "alt": "Screenshot 2", 122 | "width": 550 123 | } 124 | ] 125 | } 126 | ``` 127 | 128 | ## Reporting Issues 129 | 130 | If you find any typos, incorrect information, or have suggestions for improvements, submit an issue using the [Plugin Information Issue](https://github.com/RusherDevelopment/rusherhack-plugins/issues/new?template=plugin-information-issue.md). 131 | 132 | --- 133 | 134 | > [!NOTE] 135 | > Providing detailed info will help us fix issues faster and keep the plugin list accurate. 136 | -------------------------------------------------------------------------------- /PLUGINS.md: -------------------------------------------------------------------------------- 1 | ![RusherHack Logo](./Assets/RusherHacks/rh_head.png) 2 | 3 | # Plugins List 4 | 5 | [![Plugins](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=$.totalPlugins.message&label=Plugins&color=green)](#plugins-list) 6 | [![RusherHack v2.0.6](https://img.shields.io/badge/RusherHack-v2.0.6-purple?logo=data:image/png;base64,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)](https://rusherhack.org/changelog.html) 7 | 8 | > [!WARNING] 9 | > None of the plugins listed here have been verified or confirmed to be safe. Use at your own risk! 10 | 11 | > [!IMPORTANT] 12 | > These plugins are not affiliated with or endorsed by Rusher Development LLC. 13 | 14 | Community-created plugins to extend RusherHack’s functionality. 15 | 16 | ## Plugins 17 | 18 | Regular plugins extend RusherHack’s functionality without modifying Minecraft's internal behavior. Key features: 19 | 20 | - Can be reloaded in-game using `*reload` in chat or `reload` in the RusherHack console (`~` key). 21 | - Can be added or removed from the `.minecraft/rusherhack/plugins/` folder while the game is running. 22 | 23 | ## Core Plugins 24 | 25 | Core plugins provide deeper integration with RusherHack by modifying Minecraft’s internals using mixins. Key differences: 26 | 27 | - **Cannot be reloaded** using `*reload`. 28 | - Must be placed in the `.minecraft/rusherhack/plugins/` folder before launching the game. 29 | 30 | ## Badge Info 31 | 32 | > [!TIP] 33 | > Badges provide quick access to plugin resources: 34 | > 35 | > - **Latest Release** – links to the plugin’s GitHub releases page. 36 | > - **Downloads** – directly downloads the latest plugin `.jar` file. 37 | > - **MC Version** – displays the supported Minecraft version range. 38 | 39 | ## Top 5 Downloaded Plugins 40 | 41 |
42 | View Top 5 Plugins 43 | 44 | | Name | Creator | Description | Downloads | 45 | |------|---------|-------------|-----------| 46 | | [RusherHack Spotify Integration](https://github.com/John200410/rusherhack-spotify) | John200410 | Integrates Spotify music playback controls and status into the RusherHacks client. | ![GitHub Downloads](https://img.shields.io/github/downloads/John200410/rusherhack-spotify/total) | 47 | | [Container Tweaks](https://github.com/rfresh2/ContainerTweaks-rusherhack) | rfresh2 | Simple tweaks for quickly moving items in containers. | ![GitHub Downloads](https://img.shields.io/github/downloads/rfresh2/ContainerTweaks-rusherhack/total) | 48 | | [Shay's RusherTweaks](https://github.com/ShayBox/ShaysRusherTweaks) | ShayBox | A collection of small tweaks and improvements for the RusherHacks client. | ![GitHub Downloads](https://img.shields.io/github/downloads/ShayBox/ShaysRusherTweaks/total) | 49 | | [Nuker](https://github.com/beanbag44/Nuker) | beanbag44 | Epic nuker for nuking terrain. | ![GitHub Downloads](https://img.shields.io/github/downloads/beanbag44/Nuker/total) | 50 | | [RusherHack Instance Info](https://github.com/John200410/rusherhack-instance-info) | John200410 | Provides detailed information about the current instance. | ![GitHub Downloads](https://img.shields.io/github/downloads/John200410/rusherhack-instance-info/total) | 51 |
52 | 53 | ## Plugin List 54 | 55 | > [!NOTE] 56 | > The following plugins are community contributions. Always verify the source code and test plugins in a safe environment before using them in your main game. 57 | 58 | > [!TIP] 59 | > Use the **Outline** on the right side of this page to quickly navigate to a specific plugin. Alternatively, press **Ctrl + F** to search for a plugin name directly. 60 | 61 | --- 62 | 63 | - ### [Example Plugin](https://github.com/RusherDevelopment/example-plugin)
64 | 65 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[0].releaseDate&label=Latest%20Release&color=orange)](https://github.com/RusherDevelopment/example-plugin/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/RusherDevelopment/example-plugin/total)
66 | 67 | **Creator**: [RusherDevelopment](https://github.com/RusherDevelopment) 68 | 69 | A basic example plugin demonstrating the structure and capabilities of RusherHacks plugins. 70 | 71 | --- 72 | 73 | - ### [2b2t.vc Rusherhack](https://github.com/rfresh2/2b2t.vc-rusherhack)
74 | 75 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[1].releaseDate&label=Latest%20Release&color=green)](https://github.com/rfresh2/2b2t.vc-rusherhack/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/rfresh2/2b2t.vc-rusherhack/total)](https://github.com/rfresh2/2b2t.vc-rusherhack/releases/download/1.12/2b2t.vc-rusherhack-1.12.jar)
76 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[1].badge_version&label=MC%20Version&color=blueviolet)
77 | 78 | **Creator**: [rfresh2](https://github.com/rfresh2) 79 | 80 | A RusherHacks plugin designed for 2b2t.vc server use. 81 | 82 |
83 | Show Screenshots 84 |

85 | Hud Setting 86 | Hud Display w/2b2t Queue 87 |

88 |
89 | 90 | --- 91 | 92 | - ### [RusherHack-HudElement](https://github.com/Aspect-404/RusherHack-HudElement)
93 | 94 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[2].releaseDate&label=Latest%20Release&color=green)](https://github.com/Aspect-404/RusherHack-HudElement/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Aspect-404/RusherHack-HudElement/total)](https://github.com/Aspect-404/RusherHack-HudElement/releases/download/Release/HudElement.jar)
95 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[2].badge_version&label=MC%20Version&color=blueviolet)
96 | 97 | **Creator**: [Aspect-404](https://github.com/Aspect-404) 98 | 99 | Create a customizable HUD element for Minecraft utility mod RusherHack. 100 | 101 |
102 | Show Screenshots 103 |

104 | Hud Setting 105 | Hud Element 106 |

107 |
108 | 109 | --- 110 | 111 | - ### [Auto Anvil Rename](https://github.com/IceTank/AutoAnvilRename)
112 | 113 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[3].releaseDate&label=Latest%20Release&color=green)](https://github.com/IceTank/AutoAnvilRename/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/IceTank/AutoAnvilRename/total)](https://github.com/IceTank/AutoAnvilRename/releases/download/v0.1/AutoAnvilRename-v0.1.jar)
114 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[3].badge_version&label=MC%20Version&color=blueviolet)
115 | 116 | **Creator**: [IceTank](https://github.com/IceTank) 117 | 118 | Automates the renaming process in anvils. 119 | 120 |
121 | Show Screenshots 122 |

123 | Module 124 | Module Info 125 |

126 |
127 | 128 | --- 129 | 130 | - ### [Queue Manager](https://github.com/GabiRP/QueueManager)
131 | 132 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[4].releaseDate&label=Latest%20Release&color=green)](https://github.com/GabiRP/QueueManager/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/GabiRP/QueueManager/total)](https://github.com/GabiRP/QueueManager/releases/latest/download/QueueManager.Rusher-1.0-SNAPSHOT.jar)
133 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[4].badge_version&label=MC%20Version&color=blueviolet)
134 | 135 | **Creator**: [GabiRP](https://github.com/GabiRP) 136 | 137 | Manages queue positions and notifies users of their status. 138 | 139 | --- 140 | 141 | - ### [RusherHack Instance Info](https://github.com/John200410/rusherhack-instance-info)
142 | 143 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[5].releaseDate&label=Latest%20Release&color=green)](https://github.com/John200410/rusherhack-instance-info/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/John200410/rusherhack-instance-info/total)](https://github.com/John200410/rusherhack-instance-info/releases/download/v1.2.2/instance-info-1.2.2.jar)
144 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[5].badge_version&label=MC%20Version&color=blueviolet)
145 | 146 | **Creator**: [John200410](https://github.com/John200410) 147 | 148 | Provides detailed information about the current instance. 149 | 150 |
151 | Show Screenshots 152 |

153 | Module 154 | Player Head Info 155 | Player Head Info 156 |

157 |
158 | 159 | --- 160 | 161 | - ### [Stash Mover Plugin](https://github.com/xyzbtw/StashMoverPlugin)
162 | 163 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[6].releaseDate&label=Latest%20Release&color=green)](https://github.com/xyzbtw/StashMoverPlugin/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/StashMoverPlugin/total)](https://github.com/xyzbtw/StashMoverPlugin/releases/download/FINAL/stashmover-release-1.20.4.jar)
164 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[6].badge_version&label=MC%20Version&color=blueviolet)
165 | 166 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 167 | 168 | A plugin to move stashes using pearls. 169 | 170 |
171 | Show Screenshots/Videos 172 |

173 | 174 | Stash Mover Demo 175 | 176 |

177 |
178 | 179 | --- 180 | 181 | - ### [Unified Module List](https://github.com/czho/unified-modulelist)
182 | 183 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[7].releaseDate&label=Latest%20Release&color=orange)](https://github.com/czho/unified-modulelist/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/czho/unified-modulelist/total)
184 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[7].badge_version&label=MC%20Version&color=blueviolet)
185 | 186 | **Creator**: [czho](https://github.com/czho) 187 | 188 | Rusherhack HUD element that shows active modules from both meteorclient and rusherhack. 189 | 190 | --- 191 | 192 | - ### [Container Tweaks](https://github.com/rfresh2/ContainerTweaks-rusherhack)
193 | 194 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[8].releaseDate&label=Latest%20Release&color=green)](https://github.com/rfresh2/ContainerTweaks-rusherhack/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/rfresh2/ContainerTweaks-rusherhack/total)](https://github.com/rfresh2/ContainerTweaks-rusherhack/releases/download/1.11/ContainerTweaks-1.11%2B1.20-1.21.1.jar)
195 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[8].badge_version&label=MC%20Version&color=blueviolet)
196 | 197 | **Creator**: [rfresh2](https://github.com/rfresh2) 198 | 199 | Simple tweaks for quickly moving items in containers. 200 | 201 |
202 | Show Screenshots 203 |

204 | Module 205 |

206 |
207 | 208 | --- 209 | 210 | - ### [RusherHack Spotify Integration](https://github.com/John200410/rusherhack-spotify)
211 | 212 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[9].releaseDate&label=Latest%20Release&color=green)](https://github.com/John200410/rusherhack-spotify/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/John200410/rusherhack-spotify/total)](https://github.com/John200410/rusherhack-spotify/releases/download/1.2.1/rusherhack-spotify-1.2.1.jar)
213 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[9].badge_version&label=MC%20Version&color=blueviolet)
214 | 215 | **Creator**: [John200410](https://github.com/John200410) 216 | 217 | Integrates Spotify music playback controls and status into the RusherHacks client. 218 | 219 |
220 | Show Screenshots 221 |

222 | Module 223 | Spotify Hud Element 224 |

225 |
226 | 227 | --- 228 | 229 | - ### [Vanilla Elytra Flight](https://github.com/FBanna/Rusherhack-Vanilla-Efly)
230 | 231 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[10].releaseDate&label=Latest%20Release&color=green)](https://github.com/FBanna/Rusherhack-Vanilla-Efly/releases) [![Download Latest Version](https://img.shields.io/github/downloads/FBanna/Rusherhack-Vanilla-Efly/total)](https://github.com/FBanna/Rusherhack-Vanilla-Efly/releases/download/2.1.2%2B1.21.4/FBanna.s-efly-2.1.2.jar) 232 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[10].badge_version&label=MC%20Version&color=blueviolet)
233 | 234 | **Creator**: [FBanna](https://github.com/FBanna) 235 | 236 | Highly customizable rusher hack elytra flight plugin. 237 | 238 | --- 239 | 240 | - ### [Rusherhack BookBot](https://github.com/Aspect-404/Rusherhack-BookBot)
241 | 242 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[11].releaseDate&label=Latest%20Release&color=green)](https://github.com/Aspect-404/Rusherhack-BookBot/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Aspect-404/Rusherhack-BookBot/total)](https://github.com/Aspect-404/Rusherhack-BookBot/releases/download/Release/BookBot.jar)
243 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[11].badge_version&label=MC%20Version&color=blueviolet)
244 | 245 | **Creator**: [Aspect-404](https://github.com/Aspect-404) 246 | 247 | Rusherhack plugin for bookbot. 248 | 249 | --- 250 | 251 | - ### [Shay's RusherTweaks](https://github.com/ShayBox/ShaysRusherTweaks)
252 | 253 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[12].releaseDate&label=Latest%20Release&color=green)](https://github.com/ShayBox/ShaysRusherTweaks/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/ShayBox/ShaysRusherTweaks/total)](https://github.com/ShayBox/ShaysRusherTweaks/releases/download/0.10.2/ShaysRusherPlugin-1.20.1-0.10.2.jar)
254 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[12].badge_version&label=MC%20Version&color=blueviolet)
255 | 256 | **Creator**: [ShayBox](https://github.com/ShayBox) 257 | 258 | A collection of small tweaks and improvements for the RusherHacks client. 259 | 260 | --- 261 | 262 | - ### [Nuker](https://github.com/beanbag44/Nuker)
263 | 264 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[13].releaseDate&label=Latest%20Release&color=green)](https://github.com/beanbag44/Nuker/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/beanbag44/Nuker/total)](https://github.com/beanbag44/Nuker/releases)
265 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[13].badge_version&label=MC%20Version&color=blueviolet)
266 | 267 | **Creator**: [beanbag44](https://github.com/beanbag44) 268 | 269 | Epic nuker for nuking terrain. 270 | 271 |
272 | Show Screenshots/Videos 273 |

274 | 275 | Nuker Demo 276 | 277 |

278 |
279 | 280 | --- 281 | 282 | - ### [Hold Rusher](https://github.com/cherosin/hold-rusher)
283 | 284 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[14].releaseDate&label=Latest%20Release&color=green)](https://github.com/cherosin/hold-rusher/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/cherosin/hold-rusher/total)](https://github.com/cherosin/hold-rusher/releases/download/1.0.1/hold-rusher-1.0.1.jar)
285 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[14].badge_version&label=MC%20Version&color=blueviolet)
286 | 287 | **Creator**: [cherosin](https://github.com/cherosin) 288 | 289 | Adds a "Hold" flag for all modules, if active keybind will only be toggled while held. 290 | 291 | --- 292 | 293 | - ### [No Walk Animation](https://github.com/Eonexe/NoWalkAnimation)
294 | 295 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[15].releaseDate&label=Latest%20Release&color=green)](https://github.com/Eonexe/NoWalkAnimation/releases) [![Download Latest Version](https://img.shields.io/github/downloads/Eonexe/NoWalkAnimation/total)](https://github.com/Eonexe/NoWalkAnimation/releases/download/1.20.6/no-walk-animations-0.1.0.jar)
296 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[15].badge_version&label=MC%20Version&color=blueviolet)
297 | 298 | **Creator**: [Eonexe](https://github.com/Eonexe) 299 | 300 | Removes the walking animation. 301 | 302 | --- 303 | 304 | - ### [NBT Utils](https://github.com/kybe236/rusherhack-nbt-utils)
305 | 306 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[16].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-nbt-utils/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-nbt-utils/total)](https://github.com/kybe236/rusherhack-nbt-utils/releases/latest/download/nbt-reader-0.1.0.jar)
307 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[16].badge_version&label=MC%20Version&color=blueviolet)
308 | 309 | **Creator**: [kybe236](https://github.com/kybe236) 310 | 311 | Rusher nbt paste and copy. 312 | 313 | --- 314 | 315 | - ### [Rusherhack Executer](https://github.com/kybe236/rusherhack-executer)
316 | 317 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[17].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-executer/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-executer/total)](https://github.com/kybe236/rusherhack-executer/releases/latest/download/kybes-executer-5.0.0.jar)
318 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[17].badge_version&label=MC%20Version&color=blueviolet)
319 | 320 | **Creator**: [kybe236](https://github.com/kybe236) 321 | 322 | Executes commands and resolves `` to every player online. 323 | 324 | --- 325 | 326 | - ### [F3 Spoof](https://github.com/Doogie13/f3-spoof)
327 | 328 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[18].releaseDate&label=Latest%20Release&color=orange)](https://github.com/Doogie13/f3-spoof/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Doogie13/f3-spoof/total)
329 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[18].badge_version&label=MC%20Version&color=blueviolet)
330 | 331 | **Creator**: [Doogie13](https://github.com/Doogie13) 332 | 333 | Spoofs the F3 debug screen information. 334 | 335 | --- 336 | 337 | - ### [Open Folder](https://github.com/kybe236/rusherhack-open-folder)
338 | 339 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[19].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-open-folder/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-open-folder/total)](https://github.com/kybe236/rusherhack-open-folder/releases/latest/download/open-folder-0.0.9.jar)
340 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[19].badge_version&label=MC%20Version&color=blueviolet)
341 | 342 | **Creator**: [kybe236](https://github.com/kybe236) 343 | 344 | Opens the folder for the module with a button click. 345 | 346 |
347 | Show Screenshots/Videos 348 |

349 | 350 | Open Folder Demo 351 | 352 |

353 |
354 | 355 | --- 356 | 357 | - ### [Mace Kill](https://github.com/kybe236/rusherhack-mace-kill)
358 | 359 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[20].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-mace-kill/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-mace-kill/total)](https://github.com/kybe236/rusherhack-mace-kill/releases/download/1.21.4/mace-kill-1.0.0.jar)
360 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[20].badge_version&label=MC%20Version&color=blueviolet)
361 | 362 | **Creator**: [kybe236](https://github.com/kybe236) 363 | 364 | One shot pretty much all mobs with a mace. 365 | 366 |
367 | Show Screenshots/Videos 368 |

369 | 370 | Mace Kill Demo 371 | 372 |

373 |
374 | 375 | --- 376 | 377 | - ### [Weather Changing Plugin](https://github.com/Lokfid/WeatherChangingPlugin)
378 | 379 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[21].releaseDate&label=Latest%20Release&color=green)](https://github.com/Lokfid/WeatherChangingPlugin/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Lokfid/WeatherChangingPlugin/total)](https://github.com/Lokfid/WeatherChangingPlugin/releases/latest/download/WeatherPlugin-1.0.2.jar)
380 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[21].badge_version&label=MC%20Version&color=blueviolet)
381 | 382 | **Creator**: [Lokfid](https://github.com/Lokfid) 383 | 384 | Allows players to change the weather in-game. 385 | 386 | --- 387 | 388 | - ### [Middleclick Wind Charge](https://github.com/kybe236/rusherhack-middleclick-wind-charge)
389 | 390 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[22].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-middleclick-wind-charge/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-middleclick-wind-charge/total)](https://github.com/kybe236/rusherhack-middleclick-wind-charge/releases/download/1.21-1.0.1/rusherhack-middleclick-wind-charge-1.0.1.jar)
391 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[22].badge_version&label=MC%20Version&color=blueviolet)
392 | 393 | **Creator**: [kybe236](https://github.com/kybe236) 394 | 395 | Allows you to throw windcharges with the middle mouse button and also jump at the same time so you can boost jump. 396 | 397 |
398 | Show Screenshots/Videos 399 |

400 | 401 | Middleclick Wind Charge Demo 402 | 403 |

404 |
405 | 406 | --- 407 | 408 | - ### [GarlicSight](https://github.com/GarlicRot/GarlicSight)
409 | 410 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[23].releaseDate&label=Latest%20Release&color=green)](https://github.com/GarlicRot/GarlicSight/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/GarlicRot/GarlicSight/total)](https://github.com/GarlicRot/GarlicSight/releases)
411 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[23].badge_version&label=MC%20Version&color=blueviolet)
412 | 413 | **Creator**: [GarlicRot](https://github.com/GarlicRot) 414 | 415 | A RusherHacks Plugin - Crosshair Info - GarlicSight. 416 | 417 |
418 | Show Screenshots 419 |

420 | Hud Element 421 | Block Info 422 | Entity Info 423 |

424 |
425 | 426 | --- 427 | 428 | - ### [LightningPop](https://github.com/GarlicRot/LightningPop)
429 | 430 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[24].releaseDate&label=Latest%20Release&color=green)](https://github.com/GarlicRot/LightningPop/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/GarlicRot/LightningPop/total)](https://github.com/GarlicRot/LightningPop/releases)
431 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[24].badge_version&label=MC%20Version&color=blueviolet)
432 | 433 | **Creator**: [GarlicRot](https://github.com/GarlicRot) 434 | 435 | A RusherHacks Plugin - Spawns Lightning On Totem Pops And Player Deaths - LightningPop. 436 | 437 |
438 | Show Screenshots 439 |

440 | Module 441 |

442 |
443 | 444 | --- 445 | 446 | - ### [AutoBucket](https://github.com/GarlicRot/AutoBucket)
447 | 448 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[25].releaseDate&label=Latest%20Release&color=green)](https://github.com/GarlicRot/AutoBucket/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/GarlicRot/AutoBucket/total)](https://github.com/GarlicRot/AutoBucket/releases)
449 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[25].badge_version&label=MC%20Version&color=blueviolet)
450 | 451 | **Creator**: [GarlicRot](https://github.com/GarlicRot) 452 | 453 | A RusherHacks Plugin - Auto Bucket Entities - AutoBucket. 454 | 455 |
456 | Show Screenshots 457 |

458 | Module 459 |

460 |
461 | 462 | --- 463 | 464 | - ### [RusherHack-BoatExecute](https://github.com/PhilipPanda/RusherHack-BoatExecute)
465 | 466 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[26].releaseDate&label=Latest%20Release&color=green)](https://github.com/PhilipPanda/RusherHack-BoatExecute/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/PhilipPanda/RusherHack-BoatExecute/total)](https://github.com/PhilipPanda/RusherHack-BoatExecute/releases/latest/download/boatexecute-1.20.4.jar)
467 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[26].badge_version&label=MC%20Version&color=blueviolet)
468 | 469 | **Creator**: [PhilipPanda](https://github.com/PhilipPanda) 470 | 471 | A RusherHack module plugin for 1.20.4 that exploits boat movement packets to instantly kill all passengers. 472 | 473 |
474 | Show Screenshots/Videos 475 |

476 | 477 | BoatExecute Demo 478 | 479 |

480 |
481 | 482 | --- 483 | 484 | - ### [NBT Viewer](https://github.com/Gentleman2292/NBT-viewer)
485 | 486 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[27].releaseDate&label=Latest%20Release&color=green)](https://github.com/Gentleman2292/NBT-viewer/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Gentleman2292/NBT-viewer/total)](https://github.com/Gentleman2292/NBT-viewer/releases/latest/download/NBTViewer-plugin-1.2-release.jar)
487 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[27].badge_version&label=MC%20Version&color=blueviolet)
488 | 489 | **Creator**: [Gentleman2292](https://github.com/Gentleman2292) 490 | 491 | A plugin to view NBT data in Minecraft. 492 | 493 |
494 | Show Screenshots 495 |

496 | NBT-viewer 497 |

498 |
499 | 500 | --- 501 | 502 | - ### [Remote Control](https://github.com/kybe236/rusherhack-remote-controle)
503 | 504 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[28].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-remote-controle/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-remote-controle/total)](https://github.com/kybe236/rusherhack-remote-controle/releases/latest/download/remote-control-1.0.0.jar)
505 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[28].badge_version&label=MC%20Version&color=blueviolet)
506 | **Creator**: [kybe236](https://github.com/kybe236) 507 | 508 | A plugin for remote controlling RusherHacks. 509 | 510 | --- 511 | 512 | - ### [Speed Measure](https://github.com/Lokfid/RusherHackSpeedMeasure)
513 | 514 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[29].releaseDate&label=Latest%20Release&color=green)](https://github.com/Lokfid/RusherHackSpeedMeasure/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Lokfid/RusherHackSpeedMeasure/total)](https://github.com/Lokfid/RusherHackSpeedMeasure/releases/latest/download/SpeedMeasure-1.0.1.jar)
515 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[29].badge_version&label=MC%20Version&color=blueviolet)
516 | 517 | **Creator**: [Lokfid](https://github.com/Lokfid) 518 | 519 | A plugin to measure speed in RusherHacks. 520 | 521 | **Original Creator**: [IceTank](https://github.com/IceTank) 522 | 523 | --- 524 | 525 | - ### [TNT Bomber](https://github.com/kybe236/rusher-tnt-bomber)
526 | 527 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[30].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-tnt-bomber/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-tnt-bomber/total)](https://github.com/kybe236/rusher-tnt-bomber/releases/latest/download/tnt-nuker-1.0.0.jar)
528 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[30].badge_version&label=MC%20Version&color=blueviolet)
529 | 530 | **Creator**: [kybe236](https://github.com/kybe236) 531 | 532 | A plugin to automate TNT bombing in Minecraft. 533 | 534 | --- 535 | 536 | - ### [No Render Entities](https://github.com/John200410/norender-entities)
537 | 538 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[31].releaseDate&label=Latest%20Release&color=green)](https://github.com/John200410/norender-entities/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/John200410/norender-entities/total)](https://github.com/John200410/norender-entities/releases/download/v1.0/norender-entities-1.0-SNAPSHOT.jar)
539 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[31].badge_version&label=MC%20Version&color=blueviolet)
540 | 541 | **Creator**: [John200410](https://github.com/John200410) 542 | 543 | A plugin to disable rendering of entities. 544 | 545 | --- 546 | 547 | - ### [RusherHack Messenger](https://github.com/Gentleman2292/rusherhack-messenger)
548 | 549 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[32].releaseDate&label=Latest%20Release&color=green)](https://github.com/Gentleman2292/rusherhack-messenger/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Gentleman2292/rusherhack-messenger/total)](https://github.com/Gentleman2292/rusherhack-messenger/releases/latest/download/messenger-plugin-1.0.3.jar)
550 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[32].badge_version&label=MC%20Version&color=blueviolet)
551 | 552 | **Creator**: [Gentleman2292](https://github.com/Gentleman2292) 553 | 554 | A messaging plugin for RusherHacks. 555 | 556 |
557 | Show Screenshots/Videos 558 |

559 | 560 | rusherhack-messenger Demo 561 | 562 |

563 |
564 | 565 | --- 566 | 567 | - ### [RusherHack Instance Info (Fork)](https://github.com/GarlicRot/rusherhack-instance-info)
568 | 569 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[33].releaseDate&label=Latest%20Release&color=green)](https://github.com/GarlicRot/rusherhack-instance-info/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/GarlicRot/rusherhack-instance-info/total)](https://github.com/GarlicRot/rusherhack-instance-info/releases/latest/download/instance-info-1.3.jar)
570 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[33].badge_version&label=MC%20Version&color=blueviolet)
571 | 572 | **Creator**: [GarlicRot](https://github.com/GarlicRot) 573 | 574 | A forked version of the [original plugin](https://github.com/John200410/rusherhack-instance-info) with custom settings. 575 | 576 |
577 | Show Screenshots 578 |

579 | Module 580 | Player Head Info 581 | Player Head Info 582 |

583 |
584 | 585 | --- 586 | 587 | - ### [RusherHack NoteBot](https://github.com/Lokfid/RusherHackNoteBot)
588 | 589 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[34].releaseDate&label=Latest%20Release&color=green)](https://github.com/Lokfid/RusherHackNoteBot/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Lokfid/RusherHackNoteBot/total)](https://github.com/Lokfid/RusherHackNoteBot/releases/download/1.0.3/NoteBotPlugin-1.0.3.jar)
590 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[34].badge_version&label=MC%20Version&color=blueviolet)
591 | 592 | **Creator**: [Lokfid](https://github.com/Lokfid) 593 | 594 | A RusherHacks plugin for playing note blocks in Minecraft. 595 | 596 | --- 597 | 598 | - ### [ShulkerViewer](https://github.com/xyzbtw/ShulkerViewer)
599 | 600 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[35].releaseDate&label=Latest%20Release&color=green)](https://github.com/xyzbtw/ShulkerViewer/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/ShulkerViewer/total)](https://github.com/xyzbtw/ShulkerViewer/releases/download/1.20.6/shulker-viewer-1.0.0.jar)
601 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[35].badge_version&label=MC%20Version&color=blueviolet)
602 | 603 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 604 | 605 | A RusherHacks plugin to view the contents of Shulker boxes in the inventory. 606 | 607 | --- 608 | 609 | - ### [RusherWebPlugin](https://github.com/Lokfid/RusherWebPlugin)
610 | 611 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[36].releaseDate&label=Latest%20Release&color=green)](https://github.com/Lokfid/RusherWebPlugin/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Lokfid/RusherWebPlugin/total)](https://github.com/Lokfid/RusherWebPlugin/releases/download/1.2/web-1.2.jar)
612 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[36].badge_version&label=MC%20Version&color=blueviolet)
613 | 614 | **Creator**: [Lokfid](https://github.com/Lokfid) 615 | 616 | Web Browser for rh. 617 | 618 | --- 619 | 620 | - ### [UpdatedNCPEfly](https://github.com/xyzbtw/UpdatedNCPEfly)
621 | 622 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[37].releaseDate&label=Latest%20Release&color=green)](https://github.com/xyzbtw/UpdatedNCPEfly/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/UpdatedNCPEfly/total)](https://github.com/xyzbtw/UpdatedNCPEfly/releases/download/release/NCP-ElytraFlight-1.0.0.jar)
623 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[37].badge_version&label=MC%20Version&color=blueviolet)
624 | 625 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 626 | 627 | A plugin for an updated version of NCPEfly. 628 | 629 | --- 630 | 631 | - ### [dc-chat-logger](https://github.com/kybe236/dc-chat-logger)
632 | 633 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[38].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/dc-chat-logger/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/dc-chat-logger/total)](https://github.com/kybe236/dc-chat-logger/releases/download/3.0.0/dc-chat-logger-3.0.0.jar)
634 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[38].badge_version&label=MC%20Version&color=blueviolet)
635 | 636 | **Creator**: [kybe236](https://github.com/kybe236) 637 | 638 | A plugin for logging chat messages to discord. 639 | 640 | --- 641 | 642 | - ### [rusherhack-nightvision-plugin](https://github.com/John200410/rusherhack-nightvision-plugin)
643 | 644 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[39].releaseDate&label=Latest%20Release&color=green)](https://github.com/John200410/rusherhack-nightvision-plugin/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/John200410/rusherhack-nightvision-plugin/total)](https://github.com/John200410/rusherhack-nightvision-plugin/releases/download/v1.0.0/nightvision-1.0.0-1.21.jar)
645 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[39].badge_version&label=MC%20Version&color=blueviolet)
646 | 647 | **Creator**: [John200410](https://github.com/John200410) 648 | 649 | A replacement for FullBright when using shaders. 650 | 651 | --- 652 | 653 | - ### [AutoNetherite](https://github.com/xyzbtw/AutoNetherite)
654 | 655 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[40].releaseDate&label=Latest%20Release&color=green)](https://github.com/xyzbtw/AutoNetherite/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/AutoNetherite/total)](https://github.com/xyzbtw/AutoNetherite/releases/download/release/autonetherite-release.jar)
656 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[40].badge_version&label=MC%20Version&color=blueviolet)
657 | 658 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 659 | 660 | A plugin that automates the process of upgrading gear to Netherite in Minecraft. 661 | 662 | --- 663 | 664 | - ### [OldSignsPlugin](https://github.com/xyzbtw/OldSignsPlugin)
665 | 666 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[41].releaseDate&label=Latest%20Release&color=green)](https://github.com/xyzbtw/OldSignsPlugin/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/OldSignsPlugin/total)](https://github.com/xyzbtw/OldSignsPlugin/releases/download/release/oldsigns-1.0.0.jar)
667 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[41].badge_version&label=MC%20Version&color=blueviolet)
668 | 669 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 670 | 671 | A plugin that brings back old sign functionalities in Minecraft. 672 | 673 | --- 674 | 675 | - ### [StashHunter-rusherhack](https://github.com/CherkaSSH/StashHunter-rusherhack)
676 | 677 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[42].releaseDate&label=Latest%20Release&color=green)](https://github.com/CherkaSSH/StashHunter-rusherhack/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/CherkaSSH/StashHunter-rusherhack/total)](https://github.com/CherkaSSH/StashHunter-rusherhack/releases/download/hehe2/StashHunter-rusherhack-1.0.1.jar)
678 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[42].badge_version&label=MC%20Version&color=blueviolet)
679 | 680 | **Creator**: [CherkaSSH](https://github.com/CherkaSSH) 681 | 682 | A plugin to help locate stashes in Minecraft using RusherHack. 683 | 684 | --- 685 | 686 | - ### [rusher-elytra-eta](https://github.com/kybe236/rusher-elytra-eta)
687 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[43].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-elytra-eta/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-elytra-eta/total)](https://github.com/kybe236/rusher-elytra-eta/releases/download/1.0.0/rusher-elytra-eta-1.0.0.jar)
688 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[43].badge_version&label=MC%20Version&color=blueviolet)
689 | 690 | **Creator**: [kybe236](https://github.com/kybe236) 691 | 692 | A rusherhack plugin that allows you to see the ETA of all Elytras in the player's inventory. 693 | 694 |
695 | Show Screenshots 696 |

697 | The hud Element 698 |

699 |
700 | 701 | --- 702 | 703 | - ### [rusher-silent-close](https://github.com/kybe236/rusher-silent-close)
704 | 705 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[44].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-silent-close/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-silent-close/total)](https://github.com/kybe236/rusher-silent-close/releases/download/1.0.0/silent-close-1.0.0.jar)
706 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[44].badge_version&label=MC%20Version&color=blueviolet)
707 | 708 | **Creator**: [kybe236](https://github.com/kybe236) 709 | 710 | Keeps Container GUI open 711 | 712 | --- 713 | 714 | - ### [rusherhack-addons](https://github.com/miles352/rusherhack-addons)
715 | 716 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[45].releaseDate&label=Latest%20Release&color=green)](https://github.com/miles352/rusherhack-addons/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/miles352/rusherhack-addons/total)](https://github.com/miles352/rusherhack-addons/releases/download/1.21.1/jefffmod-1.0.0.jar)
717 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[45].badge_version&label=MC%20Version&color=blueviolet)
718 | 719 | **Creator**: [miles352](https://github.com/miles352) 720 | 721 | A collection of RusherHacks addons including: 722 | - **AFKBoostFly**: Enables boost flying while AFK by looking up and down to gain momentum. 723 | - **MapCopy**: Allows you to copy maps in your inventory. 724 | 725 | --- 726 | 727 | - ### [rusher-gtranslate](https://github.com/kybe236/rusher-gtranslate)
728 | 729 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[46].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-gtranslate/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-gtranslate/total)](https://github.com/kybe236/rusher-gtranslate/releases/download/2.0.0/gtranslate-v2-1.0.0.jar)
730 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[46].badge_version&label=MC%20Version&color=blueviolet)
731 | 732 | **Creator**: [kybe236](https://github.com/kybe236) 733 | 734 | A plugin that integrates Google Translate into RusherHack for translating chat messages. 735 | 736 | --- 737 | 738 | - ### [rusher-matrix-nofall](https://github.com/kybe236/rusher-matrix-nofall)
739 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[47].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-matrix-nofall/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-matrix-nofall/total)](https://github.com/kybe236/rusher-matrix-nofall/releases/download/1.0.0/kybe-nofall-1.0.0.jar)
740 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[47].badge_version&label=MC%20Version&color=blueviolet)
741 | 742 | **Creator**: [kybe236](https://github.com/kybe236) 743 | 744 | No Fall by setting isFalling flag in movement packets to false (tested on 6b6t). 745 | 746 | --- 747 | 748 | - ### [rusher-autoportal](https://github.com/kybe236/rusher-autoportal)
749 | 750 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[48].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-autoportal/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-autoportal/total)](https://github.com/kybe236/rusher-autoportal/releases/download/1.20.6-1.21.1/kybe-portal-maker-1.0.0.jar)
751 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[48].badge_version&label=MC%20Version&color=blueviolet)
752 | 753 | **Creator**: [kybe236](https://github.com/kybe236) 754 | 755 | Automatically breaks blocks to place obsidian and activate the nether portal. 756 | 757 | --- 758 | 759 | - ### [rusher-air-place](https://github.com/kybe236/rusher-air-place)
760 | 761 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[49].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-air-place/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-air-place/total)](https://github.com/kybe236/rusher-air-place/releases/download/1.0.0/kybe-airplace-1.0.0.jar)
762 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[49].badge_version&label=MC%20Version&color=blueviolet)
763 | 764 | **Creator**: [kybe236](https://github.com/kybe236) 765 | 766 | A plugin that allows placing blocks in the air in Minecraft. 767 | 768 | --- 769 | 770 | - ### [rusher-hold-spamm-space](https://github.com/kybe236/rusher-hold-spamm-space)
771 | 772 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[50].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-hold-spamm-space/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-hold-spamm-space/total)](https://github.com/kybe236/rusher-hold-spamm-space/releases/download/1.0.0.1/kybe-holdspace-1.0.0.jar)
773 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[50].badge_version&label=MC%20Version&color=blueviolet)
774 | 775 | **Creator**: [kybe236](https://github.com/kybe236) 776 | 777 | A plugin that automatically spams or holds the space bar. 778 | 779 | --- 780 | 781 | - ### [rusher-auto-bed-bomber](https://github.com/kybe236/rusher-auto-bed-bomber)
782 | 783 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[51].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-auto-bed-bomber/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-auto-bed-bomber/total)](https://github.com/kybe236/rusher-auto-bed-bomber/releases/download/idk/kybe-auto-bed-bomb-1.0.0.jar)
784 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[51].badge_version&label=MC%20Version&color=blueviolet)
785 | 786 | **Creator**: [kybe236](https://github.com/kybe236) 787 | 788 | A plugin that automates bed bombing in Minecraft. 789 | 790 | --- 791 | 792 | - ### [rusher-crystal-spin](https://github.com/kybe236/rusher-crystal-spin)
793 | 794 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[52].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-crystal-spin/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-crystal-spin/total)](https://github.com/kybe236/rusher-crystal-spin/releases/download/1.0.0/kybe-holdspace-1.0.0.jar)
795 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[52].badge_version&label=MC%20Version&color=blueviolet)
796 | 797 | **Creator**: [kybe236](https://github.com/kybe236) 798 | 799 | A plugin that makes end crystals spin faster or slower. 800 | 801 | --- 802 | 803 | - ### [AutoShear](https://github.com/oisin404/AutoShear)
804 | 805 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[53].releaseDate&label=Latest%20Release&color=green)](https://github.com/oisin404/AutoShear/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/oisin404/AutoShear/total)](https://github.com/oisin404/AutoShear/releases/download/1.0.2/auto-shear-1.0.2.jar)
806 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[53].badge_version&label=MC%20Version&color=blueviolet)
807 | 808 | **Creator**: [oisin404](https://github.com/oisin404) 809 | 810 | A plugin that automates shearing in Minecraft. 811 | 812 |
813 | Show Video 814 |

815 | Video Tutorial 816 |

817 |
818 | 819 | --- 820 | 821 | - ### [Rusher2b2tVelocity](https://github.com/Lokfid/Rusher2b2tVelocity)
822 | 823 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[54].releaseDate&label=Latest%20Release&color=green)](https://github.com/Lokfid/Rusher2b2tVelocity/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Lokfid/Rusher2b2tVelocity/total)](https://github.com/Lokfid/Rusher2b2tVelocity/releases/download/1.0.0fixfix/VelocityPlus-1.0.0.jar)
824 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[54].badge_version&label=MC%20Version&color=blueviolet)
825 | 826 | **Creator**: [Lokfid](https://github.com/Lokfid) 827 | 828 | A plugin that adds enhanced velocity control for RusherHacks on the 2b2t server. 829 | 830 | --- 831 | 832 | - ### [rusher-autokit](https://github.com/kybe236/rusher-autokit)
833 | 834 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[55].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-autokit/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-autokit/total)](https://github.com/kybe236/rusher-autokit/releases/download/1.0.0/kybe-autokit-1.0.0.jar)
835 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[55].badge_version&label=MC%20Version&color=blueviolet)
836 | 837 | **Creator**: [kybe236](https://github.com/kybe236) 838 | 839 | A plugin that automatically equips your preferred kit. 840 | 841 | --- 842 | 843 | - ### [AutoTorch](https://github.com/NinetyUnderScore/AutoTorch)
844 | 845 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[56].releaseDate&label=Latest%20Release&color=green)](https://github.com/NinetyUnderScore/AutoTorch/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/NinetyUnderScore/AutoTorch/total)](https://github.com/NinetyUnderScore/AutoTorch/releases/download/Release/autotorch-plugin-1.0.0.jar)
846 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[56].badge_version&label=MC%20Version&color=blueviolet)
847 | 848 | **Creator**: [NinetyUnderScore](https://github.com/NinetyUnderScore) 849 | 850 | Automatically places torches to light up areas in Minecraft. 851 | 852 | --- 853 | 854 | - ### [Elytra Swap](https://github.com/cmg-divined/elytra-swap)
855 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[57].releaseDate&label=Latest%20Release&color=orange)](https://github.com/cmg-divined/elytra-swap/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/cmg-divined/elytra-swap/total)
856 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[57].badge_version&label=MC%20Version&color=blueviolet)
857 | 858 | **Creator**: [cmg-divined](https://github.com/cmg-divined) 859 | 860 | Automatically swaps fully repaired Elytras with damaged ones for efficient XP farm repairs. 861 | 862 | --- 863 | 864 | - ### [HDisabler](https://github.com/CherkaSSH/hdisabler)
865 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[58].releaseDate&label=Latest%20Release&color=orange)](https://github.com/CherkaSSH/hdisabler/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/CherkaSSH/hdisabler/total)
866 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[58].badge_version&label=MC%20Version&color=blueviolet)
867 | 868 | **Creator**: [CherkaSSH](https://github.com/CherkaSSH) 869 | 870 | 2b2t fast bypass. 871 | 872 |
873 | Show Screenshots 874 |

875 | Hud Setting 876 |

877 |
878 | 879 | --- 880 | 881 | - ### [CoordFollower](https://github.com/CherkaSSH/CoordFollower-plugin)
882 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[59].releaseDate&label=Latest%20Release&color=orange)](https://github.com/CherkaSSH/CoordFollower-plugin/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/CherkaSSH/CoordFollower-plugin/total)
883 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[59].badge_version&label=MC%20Version&color=blueviolet)
884 | 885 | **Creator**: [CherkaSSH](https://github.com/CherkaSSH) 886 | 887 | A plugin that allows you to save, manage, and follow coordinates with ease. 888 | 889 |
890 | Show Usage Instructions 891 | 905 |
906 | 907 | --- 908 | 909 | - ### [Rusher Chess TUI](https://github.com/CherkaSSH/rusher-chess-tui)
910 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[60].releaseDate&label=Latest%20Release&color=orange)](https://github.com/CherkaSSH/rusher-chess-tui/releases) ![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/CherkaSSH/rusher-chess-tui/total)
911 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[60].badge_version&label=MC%20Version&color=blueviolet)
912 | 913 | **Creator**: [CherkaSSH](https://github.com/CherkaSSH) 914 | 915 | Chess module for RusherHacks, powered by [ChessLib](https://github.com/bhlangonijr/chesslib). 916 | 917 | --- 918 | 919 | - ### [ActivatedSpawnerDetector](https://github.com/un0x9/ActivatedSpawnerDetector)
920 | 921 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[61].releaseDate&label=Latest%20Release&color=green)](https://github.com/un0x9/ActivatedSpawnerDetector/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/un0x9/ActivatedSpawnerDetector/total)](https://github.com/un0x9/ActivatedSpawnerDetector/releases/download/v1.2.2/ActivatedSpawnerDetector-1.2.2.jar)
922 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[61].badge_version&label=MC%20Version&color=blueviolet)
923 | 924 | **Creator**: [un0x9](https://github.com/un0x9) 925 | 926 | Detects activated spawners and provides visual feedback in RusherHacks. 927 | 928 | --- 929 | 930 | - ### [Rusher Discord Notifications](https://github.com/kybe236/rusher-discord-notifications)
931 | 932 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[62].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-discord-notifications/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-discord-notifications/total)](https://github.com/kybe236/rusher-discord-notifications/releases/download/1.0.0/discord-notifier-1.0.0.jar)
933 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[62].badge_version&label=MC%20Version&color=blueviolet)
934 | 935 | **Creator**: [kybe236](https://github.com/kybe236) 936 | 937 | Sends notifications from RusherHacks to a Discord channel. 938 | 939 | --- 940 | 941 | - ### [AutoBonemeal](https://github.com/John200410/rusherhack-autobonemeal)
942 | 943 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[63].releaseDate&label=Latest%20Release&color=green)](https://github.com/John200410/rusherhack-autobonemeal/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/John200410/rusherhack-autobonemeal/total)](https://github.com/John200410/rusherhack-autobonemeal/releases/download/v1.0.0/auto-bonemeal-1.0.0.jar)
944 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[63].badge_version&label=MC%20Version&color=blueviolet)
945 | 946 | **Creator**: [John200410](https://github.com/John200410) 947 | 948 | A RusherHacks plugin for automatically applying bonemeal to crops. 949 | 950 | --- 951 | 952 | - ### [Rocket3](https://github.com/PK268/Rocket3)
953 | 954 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[64].releaseDate&label=Latest%20Release&color=green)](https://github.com/PK268/Rocket3/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/PK268/Rocket3/total)](https://github.com/PK268/Rocket3/releases/download/v1.2.0/rocket3-1.2.0.jar)
955 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[64].badge_version&label=MC%20Version&color=blueviolet)
956 | 957 | **Creator**: [PK268](https://github.com/PK268) 958 | 959 | A RusherHacks plugin for crafting duration 3 rockets. 960 | 961 | --- 962 | 963 | - ### [GarlicBreeder](https://github.com/GarlicRot/GarlicBreeder)
964 | 965 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[65].releaseDate&label=Latest%20Release&color=green)](https://github.com/GarlicRot/GarlicBreeder/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/GarlicRot/GarlicBreeder/total)](https://github.com/GarlicRot/GarlicBreeder/releases/download/v1.0.0/GarlicBreeder-1.20.4.jar)
966 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[65].badge_version&label=MC%20Version&color=blueviolet)
967 | 968 | **Creator**: [GarlicRot](https://github.com/GarlicRot) 969 | 970 | A RusherHacks plugin that automates the breeding of mobs in Minecraft. 971 | 972 | --- 973 | 974 | - ### [Rusher Item Saver](https://github.com/kybe236/rusher-item-saver)
975 | 976 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[66].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-item-saver/releases) 977 | [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-item-saver/total)](https://github.com/kybe236/rusher-item-saver/releases/download/multiversion/item-saver-1.0.0.jar)
978 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[66].badge_version&label=MC%20Version&color=blueviolet)
979 | 980 | **Creator**: [kybe236](https://github.com/kybe236) 981 | 982 | A RusherHacks plugin that saves items from being lost. 983 | 984 | --- 985 | 986 | - ### [RusherHack Mace Swap](https://github.com/kybe236/rusherhack-mace-swap)
987 | 988 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[67].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-mace-swap/releases) 989 | [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-mace-swap/total)](https://github.com/kybe236/rusherhack-mace-swap/releases/download/fix1/mace-swap-1.0.0.jar)
990 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[67].badge_version&label=MC%20Version&color=blueviolet)
991 | 992 | **Creator**: [kybe236](https://github.com/kybe236) 993 | 994 | A RusherHacks plugin that automatically swaps to a mace when attacking. 995 | 996 | --- 997 | 998 | - ### [Example Core Plugin](https://github.com/RusherDevelopment/example-core-plugin) 999 | 1000 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[69].releaseDate&label=Latest%20Release&color=orange)](https://github.com/RusherDevelopment/example-core-plugin/releases) ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/RusherDevelopment/example-core-plugin/total)](https://github.com/RusherDevelopment/example-core-plugin/releases/download/v1.0.0/example-core-plugin-1.0.0.jar) 1001 | 1002 | **Creator**: [RusherDevelopment](https://github.com/RusherDevelopment) 1003 | 1004 | A core plugin example demonstrating mixin support in RusherHack. 1005 | 1006 | --- 1007 | 1008 | - ### [CrystalModifierRH](https://github.com/xyzbtw/CrystalModifierRH) 1009 | 1010 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[69].releaseDate&label=Latest%20Release&color=orange)](https://github.com/xyzbtw/CrystalModifierRH) ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/CrystalModifierRH/total)](https://github.com/xyzbtw/CrystalModifierRH/releases)
1011 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[69].badge_version&label=MC%20Version&color=blueviolet)
1012 | 1013 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 1014 | 1015 | A plugin for modifying the rendering of end crystals in Minecraft using mixins in RusherHack. 1016 | 1017 | --- 1018 | 1019 | - ### [Tablist Hats](https://github.com/rfresh2/TablistHats-rusherhack) 1020 | 1021 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[70].releaseDate&label=Latest%20Release&color=green)](https://github.com/rfresh2/TablistHats-rusherhack/releases) ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/rfresh2/TablistHats-rusherhack/total)](https://github.com/rfresh2/TablistHats-rusherhack/releases/download/1.0/TablistHats-1.0.jar)
1022 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[70].badge_version&label=MC%20Version&color=blueviolet)
1023 | 1024 | **Creator**: [rfresh2](https://github.com/rfresh2) 1025 | 1026 | Enables hat layer rendering for player heads on the tablist, even if the player isn't in render distance. 1027 | 1028 |
1029 | Show Screenshot 1030 |

1031 | Tablist Hats Example 1032 |

1033 |
1034 | 1035 | --- 1036 | 1037 | - ### [NoSound](https://github.com/John200410/nosound) 1038 | 1039 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[71].releaseDate&label=Latest%20Release&color=orange)](https://github.com/John200410/nosound) ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/John200410/nosound/total)](https://github.com/John200410/nosound/releases)
1040 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[71].badge_version&label=MC%20Version&color=blueviolet)
1041 | 1042 | **Creator**: [John200410](https://github.com/John200410) 1043 | 1044 | A core plugin that disables specific in-game sounds in RusherHack. 1045 | 1046 | --- 1047 | 1048 | - ### [RusherHack Coord Spoofer](https://github.com/kybe236/rusherhack-coord-spoofer) 1049 | 1050 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[72].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-coord-spoofer/releases) ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-coord-spoofer/total)](https://github.com/kybe236/rusherhack-coord-spoofer/releases/download/1.21%2B/coord-spoofer-1.0.0.jar)
1051 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[72].badge_version&label=MC%20Version&color=blueviolet)
1052 | 1053 | **Creator**: [kybe236](https://github.com/kybe236) 1054 | 1055 | A core plugin for spoofing player coordinates in RusherHack. 1056 | 1057 | --- 1058 | 1059 | - ### [Rusher Auto Item Frame Dupe](https://github.com/kybe236/rusher-auto-item-frame-dupe) 1060 | 1061 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[73].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-auto-item-frame-dupe/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-auto-item-frame-dupe/total)](https://github.com/kybe236/rusher-auto-item-frame-dupe/releases/download/1.21.1-1.21.4/rusher-auto-item-frame-dupe-1.0.0.jar)
1062 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[73].badge_version&label=MC%20Version&color=blueviolet)
1063 | 1064 | **Creator**: [kybe236](https://github.com/kybe236) 1065 | 1066 | A plugin for automating item frame duplication in RusherHack. 1067 | 1068 | --- 1069 | 1070 | - ### [RusherMoji](https://github.com/Lokfid/RusherMoji) 1071 | 1072 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[74].releaseDate&label=Latest%20Release&color=green)](https://github.com/Lokfid/RusherMoji/releases) ![Core Plugin](https://img.shields.io/badge/Core%20Plugin-blue) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Lokfid/RusherMoji/total)](https://github.com/Lokfid/RusherMoji/releases/download/1.0.4/emoji-1.0.4.jar)
1073 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[74].badge_version&label=MC%20Version&color=blueviolet)
1074 | 1075 | **Creator**: [Lokfid](https://github.com/Lokfid) 1076 | 1077 | A core plugin for adding custom emoji functionality in RusherHack. 1078 | 1079 | --- 1080 | 1081 | 1082 | - ### [RusherHack Piston Pusher](https://github.com/kybe236/rusherhack-piston-pusher) 1083 | 1084 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[75].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusherhack-piston-pusher/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusherhack-piston-pusher/total)](https://github.com/kybe236/rusherhack-piston-pusher/releases/download/1.21.4/crystal-pusher-1.0.0.jar)
1085 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[75].badge_version&label=MC%20Version&color=blueviolet)
1086 | 1087 | **Creator**: [kybe236](https://github.com/kybe236) 1088 | 1089 | A plugin that automates pushing end crystals with pistons to attack players in RusherHack. 1090 | 1091 | --- 1092 | 1093 | - ### [RusherUtils](https://github.com/0tterware/RusherUtils) 1094 | 1095 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[76].releaseDate&label=Latest%20Release&color=green)](https://github.com/0tterware/RusherUtils/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/0tterware/RusherUtils/total)](https://github.com/0tterware/RusherUtils/releases/download/v0.1/rusher-utils-0.1-1.21.4.jar)
1096 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[76].badge_version&label=MC%20Version&color=blueviolet)
1097 | 1098 | **Creator**: [0tterware](https://github.com/0tterware) 1099 | 1100 | RusherUtils automates Wither and TNT tasks with HUD counters for RusherHack. 1101 | 1102 |
1103 | Show Screenshots/Videos 1104 |

1105 | 1106 | RusherUtils Demo 1107 | 1108 |

1109 |
1110 | 1111 | --- 1112 | 1113 | - ### [Rusher Grown ESP](https://github.com/kybe236/rusher-grown-esp) 1114 | 1115 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[77].releaseDate&label=Latest%20Release&color=green)](https://github.com/kybe236/rusher-grown-esp/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/kybe236/rusher-grown-esp/total)](https://github.com/kybe236/rusher-grown-esp/releases/download/1.21.4/rusher-grow-esp-1.0.0.jar)
1116 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[77].badge_version&label=MC%20Version&color=blueviolet)
1117 | 1118 | **Creator**: [kybe236](https://github.com/kybe236) 1119 | 1120 | ESP plugin for RusherHack that highlights grown crops and useful farm blocks. 1121 | 1122 | --- 1123 | 1124 | - ### [Rusher GhoulMode](https://github.com/Koteyka32k/rusher-ghoulmode) 1125 | 1126 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[78].releaseDate&label=Latest%20Release&color=orange)](https://github.com/Koteyka32k/rusher-ghoulmode/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Koteyka32k/rusher-ghoulmode/total)](https://github.com/Koteyka32k/rusher-ghoulmode/releases/latest/download/ghoulmode-1.0.0.jar)
1127 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[78].badge_version&label=MC%20Version&color=blueviolet)
1128 | 1129 | **Creator**: [Koteyka32k](https://github.com/Koteyka32k) 1130 | 1131 | Allows you to stay in the world after death. The death screen is suppressed, and you can still look around without interacting. 1132 | > ⚠️ Note: Grim may flag movement modules like Flight — use Freecam instead. 1133 | 1134 | --- 1135 | 1136 | - ### [Rusher AutoAnvil](https://github.com/Koteyka32k/rusher-autoanvil) 1137 | 1138 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.plugins[79].releaseDate&label=Latest%20Release&color=orange)](https://github.com/Koteyka32k/rusher-autoanvil/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Koteyka32k/rusher-autoanvil/total)](https://github.com/Koteyka32k/rusher-autoanvil/releases/latest/download/autoanvil-1.0.0.jar)
1139 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[79].badge_version&label=MC%20Version&color=blueviolet)
1140 | 1141 | **Creator**: [Koteyka32k](https://github.com/Koteyka32k) 1142 | 1143 | A basic AutoAnvil with airplace. Bypasses 2b2t (very good). 1144 | 1145 | --- 1146 | 1147 | - ### [Rusher BurrowESP](https://github.com/Koteyka32k/rusher-burrowesp) 1148 | 1149 | [![Latest Release](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/badges.json&query=$.plugins[80].releaseDate&label=Latest%20Release&color=green)](https://github.com/Koteyka32k/rusher-burrowesp/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/Koteyka32k/rusher-burrowesp/total)](https://github.com/Koteyka32k/rusher-burrowesp/releases/latest/download/burrowesp-1.0.0.jar)
1150 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[80].badge_version&label=MC%20Version&color=blueviolet)
1151 | 1152 | **Creator**: [Koteyka32k](https://github.com/Koteyka32k) 1153 | 1154 | A module that shows blocks that a player is burrowed into. 1155 | 1156 | --- 1157 | 1158 | - ### [Rusherhack-SignFilter](https://github.com/ToxicAven/Rusherhack-SignFilter) 1159 | 1160 | [![Latest Release](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/badges.json&query=$.plugins[81].releaseDate&label=Latest%20Release&color=green)](https://github.com/ToxicAven/Rusherhack-SignFilter/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/ToxicAven/Rusherhack-SignFilter/total)](https://github.com/ToxicAven/Rusherhack-SignFilter/releases/latest/download/signfilter-1.0.0.jar)
1161 | ![MC Version](https://img.shields.io/badge/dynamic/json?url=https://rusherdevelopment.github.io/rusherhack-plugins/plugin-mc-versions.json&query=$[81].badge_version&label=MC%20Version&color=blueviolet)
1162 | 1163 | **Creator**: [ToxicAven](https://github.com/ToxicAven) 1164 | 1165 | A plugin for Rusherhack to filter out unwanted/inappropriate sign messages. 1166 | 1167 | --- 1168 | 1169 | [![Back to Top](https://img.shields.io/badge/↑-Back%20to%20Top-blue?style=flat)](#plugins-list) 1170 | 1171 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![RusherHack Logo](./Assets/RusherHacks/rh_head.png) 2 | 3 | # RusherHack Plugin Collection 4 | 5 | [![Plugins](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=$.totalPlugins.message&label=Plugins&color=green)](./PLUGINS.md) 6 | [![Themes](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=$.totalThemes.message&label=Themes&color=green)](./THEMES.md) 7 | [![Discord RH coding-and-plugins](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=$.discord.label&label=Discord&color=7289DA&logo=discord)](https://discord.com/channels/590970327870341143/1166486609479356516) 8 | [![RusherHack v2.0.6](https://img.shields.io/badge/RusherHack-v2.0.6-purple?logo=data:image/png;base64,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)](https://rusherhack.org/changelog.html) 9 | 10 | > [!WARNING] 11 | > None of the plugins listed here have been verified or confirmed to be safe. Use at your own risk! 12 | 13 | > [!IMPORTANT] 14 | > The plugins in this repository are not affiliated with or endorsed by Rusher Development LLC. 15 | 16 | ## Introduction 17 | 18 | This repository is a curated collection of third-party plugins developed for the RusherHack Utility Mod. These plugins extend RusherHack's functionality by adding new features and tools to enhance your gameplay experience in Minecraft. As these are community-created plugins, they are not officially verified or supported by Rusher Development LLC. 19 | 20 | > [!NOTE] 21 | > This collection is a community-driven effort to showcase plugins. Always review the source code of any plugin before using it to ensure it meets your security and functionality expectations. 22 | 23 | ## Table of Contents 24 | 25 | - [Installation](#installation) 26 | - [Plugin Types](#plugin-types) 27 | - [Plugin Examples/Info](#plugin-examplesinfo) 28 | - [Plugins List](#plugins-list) 29 | - [Themes List](#themes-list) 30 | - [Reporting Issues](#reporting-issues) 31 | - [Contribute](#contribute) 32 | 33 | ## Installation 34 | 35 | > [!IMPORTANT] 36 | > Plugins are currently only supported in developer mode. Enabling plugins without proper knowledge may cause instability or crashes. 37 | 38 | > [!TIP] 39 | > In RusherHack v2.1 (upcoming), an in-game plugin manager and verified plugin repository will simplify plugin installation and management. 40 | 41 | To enable plugins in RusherHack 2.0: 42 | 43 | 1. Add the JVM flag `-Drusherhack.enablePlugins=true` to your Minecraft JVM arguments. 44 | 2. Create the directory `.minecraft/rusherhack/plugins/` in your Minecraft folder. 45 | 46 | To install plugins: 47 | 48 | 1. Download the desired plugin(s) `.jar` files from their respective repositories. 49 | 2. Place the `.jar` files in the `.minecraft/rusherhack/plugins/` directory. 50 | 51 | > [!NOTE] 52 | > Plugins placed in the plugins folder will load automatically on game startup. Use the `*reload` command in-game to reload or load new plugins without restarting. 53 | 54 | ## Plugin Types 55 | 56 | ### Plugins 57 | 58 | Regular plugins extend RusherHack’s functionality without modifying Minecraft's internal behavior. Key features: 59 | 60 | - Can be reloaded in-game using `*reload` in chat or `reload` in the RusherHack console (`~` key). 61 | - Can be added or removed from the plugins folder while the game is running. 62 | 63 | ### Core Plugins 64 | 65 | Core plugins integrate deeply with RusherHack by modifying Minecraft’s internals using mixins. Key differences: 66 | 67 | - **Cannot be reloaded** using `*reload`. 68 | - Must be placed in the `.minecraft/rusherhack/plugins/` folder before launching the game. 69 | 70 | ## Plugin Examples/Info 71 | 72 | Explore these resources to learn more about developing and using RusherHack plugins: 73 | 74 | - [Example Plugin](https://github.com/RusherDevelopment/example-plugin): A basic example demonstrating the structure of a standard RusherHack plugin. 75 | - [Example Core Plugin](https://github.com/RusherDevelopment/example-core-plugin): An example showcasing how to create core plugins with mixins. 76 | - [RusherGUI](https://github.com/xyzbtw/rusherGUI): A plugin demonstrating a custom theme for RusherHack’s UI. 77 | - [RusherHack API Javadocs](https://javadocs.rusherhack.org): Official documentation for RusherHack’s API, detailing classes, methods, and usage. 78 | 79 | > [!TIP] 80 | > Use the Example Plugin and Javadocs as starting points to create your own plugins or to understand how existing plugins function. 81 | 82 | ## Top 5 Downloaded Plugins 83 | 84 |
85 | View Top 5 Plugins 86 | 87 | | Name | Creator | Description | Downloads | 88 | |------|---------|-------------|-----------| 89 | | [RusherHack Spotify Integration](https://github.com/John200410/rusherhack-spotify) | John200410 | Integrates Spotify music playback controls and status into the RusherHacks client. | ![GitHub Downloads](https://img.shields.io/github/downloads/John200410/rusherhack-spotify/total) | 90 | | [Container Tweaks](https://github.com/rfresh2/ContainerTweaks-rusherhack) | rfresh2 | Simple tweaks for quickly moving items in containers. | ![GitHub Downloads](https://img.shields.io/github/downloads/rfresh2/ContainerTweaks-rusherhack/total) | 91 | | [Shay's RusherTweaks](https://github.com/ShayBox/ShaysRusherTweaks) | ShayBox | A collection of small tweaks and improvements for the RusherHacks client. | ![GitHub Downloads](https://img.shields.io/github/downloads/ShayBox/ShaysRusherTweaks/total) | 92 | | [Nuker](https://github.com/beanbag44/Nuker) | beanbag44 | Epic nuker for nuking terrain. | ![GitHub Downloads](https://img.shields.io/github/downloads/beanbag44/Nuker/total) | 93 | | [RusherHack Instance Info](https://github.com/John200410/rusherhack-instance-info) | John200410 | Provides detailed information about the current instance. | ![GitHub Downloads](https://img.shields.io/github/downloads/John200410/rusherhack-instance-info/total) | 94 |
95 | 96 | ## Plugins List 97 | 98 | Discover community-created plugins to enhance RusherHack’s functionality. 99 | 100 | **Full list**: [Plugins](./PLUGINS.md) 101 | 102 | ## Themes List 103 | 104 | Themes customize RusherHack’s appearance, including colors, fonts, and UI elements. 105 | 106 | **Full list**: [Themes](./THEMES.md) 107 | 108 | ## Reporting Issues 109 | 110 | If you encounter issues with a specific plugin, contact the plugin’s creator or open an issue in their repository. 111 | 112 | For issues with this repository (e.g., incorrect plugin details, broken links, or formatting errors), use the [Plugin Information Issue](https://github.com/RusherDevelopment/rusherhack-plugins/issues/new?assignees=&labels=&template=plugin-information-issue.md&title=%5BISSUE%5D) tracker. 113 | 114 | > [!NOTE] 115 | > Clearly describe the issue and include relevant details (e.g., plugin version or error logs) to help resolve problems faster. 116 | 117 | ## Contribute 118 | 119 | Have a RusherHack plugin to share? Submit a pull request to add it to this collection! See the [Contributing Guide](./CONTRIBUTING.md) for detailed instructions. 120 | 121 | > [!TIP] 122 | > Before submitting a plugin, ensure it includes clear documentation and a link to its source code to help users evaluate its safety and functionality. 123 | -------------------------------------------------------------------------------- /THEMES.md: -------------------------------------------------------------------------------- 1 | ![RusherHack Logo](./Assets/RusherHacks/rh_head.png) 2 | 3 | # Themes 4 | 5 | [![Themes](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=$.totalThemes.message&label=Themes&color=green)](#themes-list) 6 | [![RusherHack v2.0.6](https://img.shields.io/badge/RusherHack-v2.0.6-purple?logo=data:image/png;base64,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)](https://rusherhack.org/changelog.html) 7 | 8 | > [!WARNING] 9 | > None of the themes listed here have been verified or confirmed to be safe. Use at your own risk! 10 | 11 | > [!IMPORTANT] 12 | > These themes are not affiliated with or endorsed by Rusher Development LLC. 13 | 14 | Themes modify RusherHack’s appearance, changing colors, fonts, and UI elements to customize the look and feel of the utility mod. 15 | 16 | > [!NOTE] 17 | > Themes are community-created and primarily affect the visual style of RusherHack’s interface, such as the HUD, menus, and click GUI. 18 | 19 | ## Badge Info 20 | 21 | > [!TIP] 22 | > Badges provide quick access to theme resources: 23 | > - **Latest Release**: Links to the theme’s releases page. 24 | > - **Downloads**: Directly downloads the latest theme version. 25 | 26 | ## Theme List 27 | 28 | > [!NOTE] 29 | > The following themes are community contributions. Always verify the source code and test themes in a safe environment before applying them to your main game. 30 | 31 | --- 32 | 33 | - ### [rusherNodusTheme](https://github.com/bakjedev/rusherNodusTheme)
34 | 35 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.themes[0].releaseDate&label=Latest%20Release&color=green)](https://github.com/bakjedev/rusherNodusTheme/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/bakjedev/rusherNodusTheme/total)](https://github.com/bakjedev/rusherNodusTheme/releases/latest/download/rushergui-1.0.0.jar)
36 | 37 | **Creator**: [bakjedev](https://github.com/bakjedev) 38 | 39 | Nodus - Best theme evaAAAA. Code is terrible. Blame xyzbtw! 40 | 41 |
42 | Show Screenshots 43 |

44 | Module 45 |

46 |
47 | 48 | --- 49 | 50 | - ### [Nhack Theme](https://github.com/h1tm4nqq/Nhack-theme)
51 | 52 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.themes[1].releaseDate&label=Latest%20Release&color=green)](https://github.com/h1tm4nqq/Nhack-theme/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/h1tm4nqq/Nhack-theme/total)](https://github.com/h1tm4nqq/Nhack-theme/releases/download/1.0.1/nhack-theme-1.0.1.jar)
53 | 54 | **Creator**: [h1tm4nqq](https://github.com/h1tm4nqq) 55 | 56 | A theme like Nhack 2015 for RH. 57 | 58 | --- 59 | 60 | - ### [RusherGUI](https://github.com/xyzbtw/rusherGUI)
61 | 62 | [![Latest Release Date](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Frusherdevelopment.github.io%2Frusherhack-plugins%2Fbadges.json&query=%24.themes[2].releaseDate&label=Latest%20Release&color=green)](https://github.com/xyzbtw/rusherGUI/releases) [![GitHub Downloads (all releases)](https://img.shields.io/github/downloads/xyzbtw/rusherGUI/total)](https://github.com/xyzbtw/rusherGUI/releases/latest/download/rushergui-1.0.0.jar)
63 | 64 | **Creator**: [xyzbtw](https://github.com/xyzbtw) 65 | 66 | An example plugin showcasing how to create custom themes with RusherHack. 67 | --------------------------------------------------------------------------------