diff --git a/README.md b/README.md index c9634fc..dca98b3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A simple Vencord/Equicord plugin to auto snipe nitro gift codes | ![Demo of plugin](assets/snipes.png) | | :--------------------------------------------------------------------------------------------------: | -| Screenshot of plugin sniping **three** gifts back to back to back. Credits to [n0_.q3](https://discord.com/users/957164619061932045) | +| This isn't even the full screenshot. See [here](https://github.com/neoarz/NitroSniper/blob/main/assets/full.png) | > [!CAUTION] > **Use at your own risk** diff --git a/assets/full.png b/assets/full.png new file mode 100644 index 0000000..952ba01 Binary files /dev/null and b/assets/full.png differ diff --git a/assets/snipes.png b/assets/snipes.png index 86b178f..33fc8c0 100644 Binary files a/assets/snipes.png and b/assets/snipes.png differ diff --git a/assets/webhhook/crepper.png b/assets/webhhook/crepper.png new file mode 100644 index 0000000..a3c9f86 Binary files /dev/null and b/assets/webhhook/crepper.png differ diff --git a/nitroSniper/index.tsx b/nitroSniper/index.tsx index 24548e3..75d920a 100644 --- a/nitroSniper/index.tsx +++ b/nitroSniper/index.tsx @@ -6,6 +6,7 @@ dm @neoarz if u need help or have any questions https://github.com/neoarz/NitroSniper */ +import { Alert } from "@components/Alert"; import { Devs } from "@utils/constants"; import { Logger } from "@utils/Logger"; import definePlugin from "@utils/types"; @@ -17,6 +18,11 @@ export default definePlugin({ name: "NitroSniper", description: "Automatically redeems Nitro gift links sent in chat", authors: [Devs.neoarz], + settingsAboutComponent: () => ( + + This plugin breaks Discord's TOS. Use at your own risk. + + ), enabledByDefault: false, // Safer to have off by default? start() { @@ -47,6 +53,7 @@ export default definePlugin({ return; } + // TODO: Add webhook support GiftActions.redeemGiftCode({ code }) .then(() => { logger.log(`Successfully redeemed code: ${code}!`);