├── .gitignore ├── LICENSE ├── Main.py ├── README.md ├── Sounds └── success.wav ├── config.json ├── install.bat ├── install.sh ├── launch.bat ├── launch.sh ├── requirements.txt └── tried-nitro-codes.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Development and files containing secrets 2 | config2.json 3 | 4 | 5 | # Byte-compiled / optimized / DLL files 6 | __pycache__/ 7 | *.py[cod] 8 | *$py.class 9 | 10 | # C extensions 11 | *.so 12 | 13 | # Distribution / packaging 14 | .Python 15 | build/ 16 | develop-eggs/ 17 | dist/ 18 | downloads/ 19 | eggs/ 20 | .eggs/ 21 | lib/ 22 | lib64/ 23 | parts/ 24 | sdist/ 25 | var/ 26 | wheels/ 27 | share/python-wheels/ 28 | *.egg-info/ 29 | .installed.cfg 30 | *.egg 31 | MANIFEST 32 | 33 | # PyInstaller 34 | # Usually these files are written by a python script from a template 35 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 36 | *.manifest 37 | *.spec 38 | 39 | # Installer logs 40 | pip-log.txt 41 | pip-delete-this-directory.txt 42 | 43 | # Unit test / coverage reports 44 | htmlcov/ 45 | .tox/ 46 | .nox/ 47 | .coverage 48 | .coverage.* 49 | .cache 50 | nosetests.xml 51 | coverage.xml 52 | *.cover 53 | *.py,cover 54 | .hypothesis/ 55 | .pytest_cache/ 56 | cover/ 57 | 58 | # Translations 59 | *.mo 60 | *.pot 61 | 62 | # Django stuff: 63 | *.log 64 | local_settings.py 65 | db.sqlite3 66 | db.sqlite3-journal 67 | 68 | # Flask stuff: 69 | instance/ 70 | .webassets-cache 71 | 72 | # Scrapy stuff: 73 | .scrapy 74 | 75 | # Sphinx documentation 76 | docs/_build/ 77 | 78 | # PyBuilder 79 | .pybuilder/ 80 | target/ 81 | 82 | # Jupyter Notebook 83 | .ipynb_checkpoints 84 | 85 | # IPython 86 | profile_default/ 87 | ipython_config.py 88 | 89 | # pyenv 90 | # For a library or package, you might want to ignore these files since the code is 91 | # intended to run in multiple environments; otherwise, check them in: 92 | # .python-version 93 | 94 | # pipenv 95 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 96 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 97 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 98 | # install all needed dependencies. 99 | #Pipfile.lock 100 | 101 | # poetry 102 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 103 | # This is especially recommended for binary packages to ensure reproducibility, and is more 104 | # commonly ignored for libraries. 105 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 106 | #poetry.lock 107 | 108 | # pdm 109 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 110 | #pdm.lock 111 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 112 | # in version control. 113 | # https://pdm.fming.dev/#use-with-ide 114 | .pdm.toml 115 | 116 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 117 | __pypackages__/ 118 | 119 | # Celery stuff 120 | celerybeat-schedule 121 | celerybeat.pid 122 | 123 | # SageMath parsed files 124 | *.sage.py 125 | 126 | # Environments 127 | .env 128 | .venv 129 | env/ 130 | venv/ 131 | ENV/ 132 | env.bak/ 133 | venv.bak/ 134 | 135 | # Spyder project settings 136 | .spyderproject 137 | .spyproject 138 | 139 | # Rope project settings 140 | .ropeproject 141 | 142 | # mkdocs documentation 143 | /site 144 | 145 | # mypy 146 | .mypy_cache/ 147 | .dmypy.json 148 | dmypy.json 149 | 150 | # Pyre type checker 151 | .pyre/ 152 | 153 | # pytype static type analyzer 154 | .pytype/ 155 | 156 | # Cython debug symbols 157 | cython_debug/ 158 | 159 | # PyCharm 160 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 161 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 162 | # and can be added to the global gitignore or merged into this file. For a more nuclear 163 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 164 | #.idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 LnX 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- 1 | import json 2 | import re 3 | import requests 4 | from time import sleep 5 | import colorama 6 | import datetime 7 | import discord 8 | import os 9 | from colorama import Fore 10 | from playsound import playsound 11 | from discord.ext import commands 12 | 13 | # 14 | # CONFIG INPUT 15 | # 16 | with open("config.json") as f: 17 | config = json.load(f) 18 | onalt = config.get("on_alt") 19 | token = config.get("token") 20 | rtoken = config.get("reedem_token") 21 | edelay = config.get("delay_enabled") 22 | delay = config.get("delay") 23 | giveaway_sniper = config.get("giveaway_sniper") 24 | slotbot_sniper = config.get("slotbot_sniper") 25 | nitro_sniper = config.get("nitro_sniper") 26 | airdrop_sniper = config.get("airdrop_sniper") 27 | webhooknotification = config.get("webhook_notification") 28 | sound_notification = config.get("sound_notification") 29 | webhook = config.get("webhook") 30 | botlist = config.get("bot_list") 31 | altlist = config.get("alt_list") 32 | # 33 | # END OF CONFIG INPUT 34 | # 35 | sname = "" 36 | stag = "" 37 | if os.path.isfile("tried-nitro-codes.txt"): 38 | with open("tried-nitro-codes.txt", "r") as fp: 39 | usedcodes = json.load(fp) 40 | else: 41 | usedcodes = [] 42 | 43 | 44 | def codestart(): 45 | global sname, stag 46 | if onalt: 47 | headers = {"Authorization": rtoken, "Content-Type": "application/json"} 48 | res = requests.get( 49 | "https://canary.discordapp.com/api/v6/users/@me", headers=headers 50 | ) 51 | res = res.json() 52 | sname = res["username"] 53 | stag = res["discriminator"] 54 | if onalt: 55 | onaltt = " " 56 | else: 57 | if sname != "": 58 | onaltt = f"{Fore.LIGHTBLACK_EX}({sname}#{stag})" 59 | else: 60 | onaltt = " " 61 | if edelay: 62 | ddelay = f"{Fore.LIGHTBLACK_EX}({delay} seconds)" 63 | else: 64 | ddelay = " " 65 | print( 66 | f"""{Fore.RESET} 67 | {Fore.GREEN}╔═╗ ╔╗╔ ╦ ╦═╗ ╦═╗ ╦═╗ 68 | {Fore.LIGHTBLACK_EX}╚═╗ ║║║ ║ ╠═╝ ╠╣ ╠╦╝ 69 | {Fore.WHITE}╚═╝ ╝╚╝ ╩ ╩ ╩═╝ ╩╚═ 70 | 71 | 72 | {Fore.WHITE}Connected User - {Fore.GREEN}{Sniper.user.name}#{Sniper.user.discriminator} 73 | 74 | {Fore.WHITE}Nitro Sniper - {Fore.GREEN}{nitro_sniper} {onaltt} 75 | {Fore.WHITE}Giveaway Sniper - {Fore.GREEN}{giveaway_sniper} {ddelay} 76 | 77 | """ 78 | + Fore.RESET 79 | ) 80 | 81 | 82 | colorama.init() 83 | Sniper = commands.Bot(description="Discord Sniper", command_prefix="", self_bot=True) 84 | 85 | 86 | def Clear(): 87 | print("\n" * 100) 88 | 89 | 90 | Clear() 91 | 92 | 93 | def Init(): 94 | if onalt: 95 | if config.get("token") == config.get("reedem-token"): 96 | Clear() 97 | print( 98 | f"\n\n{Fore.RED}Error {Fore.WHITE}Alt token connot be same as Redeem Token!" 99 | + Fore.RESET 100 | ) 101 | exit() 102 | if rtoken == "your-token": 103 | Clear() 104 | print( 105 | f"\n\n{Fore.RED}Error {Fore.WHITE}You didn't put your alt token in the config.json file" 106 | + Fore.RESET 107 | ) 108 | exit() 109 | else: 110 | headers = {"Authorization": rtoken, "Content-Type": "application/json"} 111 | r = requests.get( 112 | "https://canary.discordapp.com/api/v6/users/@me", headers=headers 113 | ) 114 | if r.status_code == 200: 115 | pass 116 | else: 117 | print( 118 | f"\n\n{Fore.RED}Error {Fore.WHITE}Alt Token is invalid" + Fore.RESET 119 | ) 120 | exit() 121 | if config.get("token") == "token-here": 122 | Clear() 123 | print( 124 | f"\n\n{Fore.RED}Error {Fore.WHITE}You didn't put your token in the config.json file" 125 | + Fore.RESET 126 | ) 127 | exit() 128 | else: 129 | token = config.get("token") 130 | try: 131 | Sniper.run(token, reconnect=True) 132 | except discord.errors.LoginFailure: 133 | print(f"\n\n{Fore.RED}Error {Fore.WHITE}Token is invalid" + Fore.RESET) 134 | exit() 135 | 136 | 137 | @Sniper.event 138 | async def on_command_error(ctx, error): 139 | error_str = str(error) 140 | error = getattr(error, "original", error) 141 | if isinstance(error, commands.CommandNotFound): 142 | return 143 | elif isinstance(error, discord.errors.Forbidden): 144 | print(f"{Fore.RED}Error: {Fore.WHITE}Discord error: {error}" + Fore.RESET) 145 | else: 146 | print(f"{Fore.RED}Error: {Fore.WHITE}{error_str}" + Fore.RESET) 147 | 148 | 149 | @Sniper.event 150 | async def on_message(message): 151 | global note_text 152 | 153 | def GiveawayInfo(elapsed): 154 | print( 155 | f"{Fore.LIGHTBLACK_EX} Server: {Fore.WHITE}{message.guild}" 156 | f"\n{Fore.LIGHTBLACK_EX} Channel: {Fore.WHITE}{message.channel}" 157 | f"\n{Fore.LIGHTBLACK_EX} Elapsed: {Fore.WHITE}{elapsed}s" + Fore.RESET 158 | ) 159 | 160 | def GiveawayDelayInfo(): 161 | print( 162 | f"{Fore.LIGHTBLACK_EX} Server: {Fore.WHITE}{message.guild}" 163 | f"\n{Fore.LIGHTBLACK_EX} Channel: {Fore.WHITE}{message.channel}" 164 | f"\n{Fore.LIGHTBLACK_EX} Delay: {Fore.WHITE}{delay} seconds" + Fore.RESET 165 | ) 166 | 167 | def NitroInfo(elapsed, code): 168 | print( 169 | f"{Fore.LIGHTBLACK_EX} Server: {Fore.WHITE}{message.guild}" 170 | f"\n{Fore.LIGHTBLACK_EX} Channel: {Fore.WHITE}{message.channel}" 171 | f"\n{Fore.LIGHTBLACK_EX} Author: {Fore.WHITE}{message.author}" 172 | f"\n{Fore.LIGHTBLACK_EX} Author ID: {Fore.WHITE}{message.author.id}" 173 | f"\n{Fore.LIGHTBLACK_EX} Elapsed: {Fore.WHITE}{elapsed}s" 174 | f"\n{Fore.LIGHTBLACK_EX} Code: {Fore.WHITE}{code}" + Fore.RESET 175 | ) 176 | 177 | time = datetime.datetime.now().strftime("%H:%M") 178 | if ( 179 | "discord.gift/" in message.content 180 | or "discord.com/gifts/" in message.content 181 | or "discordapp.com/gifts/" in message.content 182 | ): 183 | if nitro_sniper: 184 | start = datetime.datetime.now() 185 | if "discord.gift/" in message.content: 186 | code = re.findall("discord[.]gift/(\w+)", message.content) 187 | if "discordapp.com/gifts/" in message.content: 188 | code = re.findall("discordapp[.]com/gifts/(\w+)", message.content) 189 | if "discord.com/gifts/" in message.content: 190 | code = re.findall("discord[.]com/gifts/(\w+)", message.content) 191 | for code in code: 192 | if len(code) == 16 or len(code) == 24: 193 | if code not in usedcodes: 194 | usedcodes.append(code) 195 | with open("tried-nitro-codes.txt", "w") as fp: 196 | json.dump(usedcodes, fp) 197 | if onalt: 198 | headers = {"Authorization": rtoken} 199 | else: 200 | headers = {"Authorization": token} 201 | r = requests.post( 202 | f"https://discordapp.com/api/v6/entitlements/gift-codes/{code}/redeem", 203 | headers=headers, 204 | ).text 205 | elapsed = datetime.datetime.now() - start 206 | elapsed = f"{elapsed.seconds}.{elapsed.microseconds}" 207 | if "This gift has been redeemed already." in r: 208 | print( 209 | "" 210 | f"\n{Fore.RED}{time} - Nitro is Already Redeemed" 211 | + Fore.RESET 212 | ) 213 | NitroInfo(elapsed, code) 214 | elif "subscription_plan" in r: 215 | if sound_notification == True: 216 | try: 217 | playsound("./sounds/success.wav") 218 | except: 219 | pass 220 | 221 | print( 222 | "" 223 | f"\n{Fore.GREEN}{time} - Nitro Successfuly Claimed!" 224 | + Fore.RESET 225 | ) 226 | NitroInfo(elapsed, code) 227 | if webhooknotification: 228 | data = { 229 | "embeds": [ 230 | { 231 | "title": "Successfully Sniped Nitro Gift!", 232 | "description": f"Congratulations, good job! You can view your Nitro Gifts in your inventory.\n\nNitro Gift Server:\n{message.guild}\n\nNitro Gift Sender:\n{message.author}\n\nNitro Gift Code:\n{code}", 233 | "url": "https://github.com/lnxcz/discord-sniper", 234 | "color": 16732345, 235 | "footer": {"text": "lnxcz's sniper"}, 236 | "image": { 237 | "url": "https://i.imgur.com/9QVtF0t.png" 238 | }, 239 | } 240 | ], 241 | "username": f"Sniper | {Sniper.user.name}#{Sniper.user.discriminator}", 242 | "avatar_url": str(Sniper.user.avatar_url), 243 | } 244 | requests.post(webhook, json=data) 245 | elif "Unknown Gift Code" in r: 246 | print( 247 | "" 248 | f"\n{Fore.YELLOW}{time} - Unknown Nitro Gift Code" 249 | + Fore.RESET 250 | ) 251 | NitroInfo(elapsed, code) 252 | else: 253 | return 254 | # Don't react to all messages 255 | # Don't react to DMs 256 | if message.content or message.embeds and message.guild: 257 | if giveaway_sniper: 258 | if ( 259 | message.author.id in botlist 260 | and not ( 261 | f"@{Sniper.user.id}" in message.content 262 | or f"<@{Sniper.user.id}>" in message.content 263 | ) 264 | and not ( 265 | "Giveaway ended" in message.content 266 | or "Congratulations" in message.content 267 | ) 268 | ): 269 | start = datetime.datetime.now() 270 | try: 271 | if not edelay: 272 | await message.add_reaction("🎉") 273 | elapsed = datetime.datetime.now() - start 274 | elapsed = f"{elapsed.seconds}.{elapsed.microseconds}" 275 | except discord.errors.Forbidden: 276 | print( 277 | "" 278 | f"\n{Fore.RED}{time} - Couldn't React to Giveaway" + Fore.RESET 279 | ) 280 | GiveawayInfo(elapsed) 281 | if edelay: 282 | print("" f"\n{Fore.GREEN}{time} - Giveaway Found!" + Fore.RESET) 283 | GiveawayDelayInfo() 284 | else: 285 | print("" f"\n{Fore.GREEN}{time} - Giveaway Sniped" + Fore.RESET) 286 | GiveawayInfo(elapsed) 287 | try: 288 | if edelay: 289 | sleep(delay) 290 | await message.add_reaction("🎉") 291 | print("") 292 | print( 293 | f"{Fore.GREEN}Giveaway Sniped with delay {delay} seconds!" 294 | ) 295 | except discord.errors.Forbidden: 296 | print( 297 | "" 298 | f"\n{Fore.RED}{time} - Couldn't React to Giveaway" + Fore.RESET 299 | ) 300 | GiveawayInfo(elapsed) 301 | if webhooknotification: 302 | if message.content and message.embeds: 303 | message_content = ( 304 | "`" 305 | + message.content.replace("`", "").replace("\\", "")[:500] 306 | + "`" 307 | + "\n" 308 | + "***Message Embed***: " 309 | + "`" 310 | + str(message.embeds[0].title) 311 | + "\n" 312 | + str(message.embeds[0].description) 313 | .replace("`", "") 314 | .replace("\\", "")[:500] 315 | + "`" 316 | ) 317 | elif message.embeds and not message.content: 318 | message_content = ( 319 | "Empty Message\n" 320 | + "***Message Embed***: " 321 | + "`" 322 | + str(message.embeds[0].title) 323 | + "\n" 324 | + str(message.embeds[0].description) 325 | .replace("`", "") 326 | .replace("\\", "")[:500] 327 | + "`" 328 | ) 329 | elif message.content and not message.embeds: 330 | message_content = ( 331 | "`" 332 | + message.content.replace("`", "").replace("\\", "")[:500] 333 | + "`" 334 | ) 335 | else: 336 | message_content = "No content" 337 | data = { 338 | "embeds": [ 339 | { 340 | "title": "Giveaway Joined!", 341 | "description": f"**Message content**:\n {message_content}\n**Giveaway Server**: `{message.guild}`\n**Channel**: `#{message.channel}`\n**Bot**: `{message.author.name}`", 342 | "url": message.jump_url, 343 | "color": 3407667, 344 | } 345 | ], 346 | "username": f"Sniper | {Sniper.user.name}#{Sniper.user.discriminator}", 347 | "avatar_url": str(Sniper.user.avatar_url), 348 | } 349 | requests.post(webhook, json=data) 350 | else: 351 | return 352 | if ( 353 | f"@{Sniper.user.id}" in message.content 354 | or f"<@{Sniper.user.id}>" in message.content 355 | ): 356 | if giveaway_sniper: 357 | if message.author.id in botlist: 358 | print("" f"\n{Fore.GREEN}{time} - Giveaway Won" + Fore.RESET) 359 | elapsed = "-" 360 | GiveawayInfo(elapsed) 361 | if webhooknotification: 362 | if message.content and message.embeds: 363 | message_content = ( 364 | "`" 365 | + message.content.replace("`", "").replace("\\", "")[:500] 366 | + "`" 367 | + "\n" 368 | + "***Message Embed***: " 369 | + "`" 370 | + str(message.embeds[0].title) 371 | + "\n" 372 | + str(message.embeds[0].description) 373 | .replace("`", "") 374 | .replace("\\", "")[:500] 375 | + "`" 376 | ) 377 | elif message.embeds and not message.content: 378 | message_content = ( 379 | "Empty Message\n" 380 | + "***Message Embed***: " 381 | + "`" 382 | + str(message.embeds[0].title) 383 | + "\n" 384 | + str(message.embeds[0].description) 385 | .replace("`", "") 386 | .replace("\\", "")[:500] 387 | + "`" 388 | ) 389 | elif message.content and not message.embeds: 390 | message_content = ( 391 | "`" 392 | + message.content.replace("`", "").replace("\\", "")[:500] 393 | + "`" 394 | ) 395 | else: 396 | message_content = "No content" 397 | data = { 398 | "embeds": [ 399 | { 400 | "title": "Giveaway Won!", 401 | "description": f"**Message content**:\n {message_content}\n**Giveaway Server**: `{message.guild}`\n**Channel**: `#{message.channel}`", 402 | "url": message.jump_url, 403 | "color": 16732345, 404 | } 405 | ], 406 | "username": f"Sniper | {Sniper.user.name}#{Sniper.user.discriminator}", 407 | "avatar_url": str(Sniper.user.avatar_url), 408 | } 409 | requests.post(webhook, json=data) 410 | else: 411 | return 412 | 413 | await Sniper.process_commands(message) 414 | 415 | 416 | @Sniper.event 417 | async def on_connect(): 418 | Clear() 419 | codestart() 420 | 421 | 422 | Init() 423 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

💫 Discord Multi Sniper V3 💫

2 |

Nitro & Giveaway Sniper. Usually snipes in 10 - 50ms

3 |

⭐ Don't forget to leave a star! ⭐

4 |
ℹ️ Maintained by a community, pull requests are welcome and will be reviewed.
5 | 6 | ## Features: 7 | 8 | - Added giveaway botlist, fixed webhooks 9 | - Customizable Nitro & Giveaway sniper 10 | - Giveaway join delay 11 | - Webhook notifications (Thanks to [@rondDev](https://github.com/rondDev)) 12 | - Support on alt account 13 | 14 | ## News in v2: 15 | 16 | - Added giveaway join delay 17 | - Added Support to more giveaway bots 18 | - Fixed Privnote Sniper 19 | - More info about Sniped Nitro 20 | - Added Webhook notifications (Thanks to [@rondDev](https://github.com/rondDev)) 21 | - More customisability 22 | - Added **use on alt**, that means you can run sniper on alt account and if he snipes nitro, code will be redeemed on other account 23 | - Removed some useless code 24 | - If you have enable nitro reedem on other account or delay, it will show you on main page 25 | 26 | ## News in v3: 27 | 28 | - Replaced [discord.py](https://github.com/Rapptz/discord.py) with [discord.py-self](https://github.com/dolfies/discord.py-self) (workaround for Discord API changes) 29 | - Removed Windows Notifications for multi-OS support (might be added back in the future) 30 | - Fix embed interactions (All bots should be working now) 31 | - Cleaned up some of the redundant code 32 | 33 | - _Plans: Support to more giveaway bots, Limited invite sniper, Adding more tokens,Optimisation_ 34 | 35 | `You can recommend what to add in Issues!` 36 | 37 | ## Usage: 38 | 39 | 1. Config settings and token in `config.json` 40 | 2. Open install.bat or install.sh (It is preferable to use a [virtual environment](https://docs.python.org/3/library/venv.html), due to the conflict between regular discord.py and discord.py-self) 41 | 3. Open launch.bat or launch.sh 42 | 4. All set :) 43 | redeemed 44 | ## Settings: 45 | 46 | ![Settings Showcase](https://i.imgur.com/Bxe3s1Q.png) 47 | 48 | ## Showcase: 49 | 50 | ![Showcase](https://i.imgur.com/iEq1pLO.png) 51 | 52 | `WARNING: Using a selfbot is against Discord's TOS, It's not my fault if you get a ban when someone reports you` 53 | -------------------------------------------------------------------------------- /Sounds/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrnoch/discord-sniper/16afbc43fc061490ed5b5df735efe5f397b8c572/Sounds/success.wav -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "token", 3 | "on_alt": false, 4 | "reedem_token": "token", 5 | "webhook_notification": true, 6 | "sound_notification": true, 7 | "webhook": "", 8 | "delay_enabled": true, 9 | "delay": 5, 10 | "nitro_sniper": true, 11 | "giveaway_sniper": true, 12 | "bot_list": [ 13 | 294882584201003009, 673918978178940951, 582537632991543307, 14 | 649604306596528138, 396464677032427530, 294882584201003009, 15 | 530082442967646230, 846403023622111252 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cls 3 | title Installer 4 | py -m pip install -r requirements.txt 5 | echo Finished! 6 | pause 7 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | clear 2 | echo "Setting up now.." 3 | pip3 install -r requirements.txt 4 | echo "Finished!" 5 | -------------------------------------------------------------------------------- /launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cls 3 | title Discord Sniper - Loading 4 | python main.py 5 | pause 6 | -------------------------------------------------------------------------------- /launch.sh: -------------------------------------------------------------------------------- 1 | clear 2 | echo "Discord Sniper - Loading" 3 | /usr/bin/python3 main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | discord.py-self 2 | colorama 3 | requests 4 | playsound 5 | -------------------------------------------------------------------------------- /tried-nitro-codes.txt: -------------------------------------------------------------------------------- 1 | ["123456789ghtzuio"] --------------------------------------------------------------------------------