Skip to content

Commit

Permalink
added token input
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRedstoneRadiant committed Apr 17, 2022
1 parent 64a6c80 commit 4ec5954
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion captureIds.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def log_id(id):
print(" [+]", id, "Total:", len(data))

bot = commands.Bot(command_prefix='?')
token = input("Enter your token\n> ")

@bot.event
async def on_ready():
Expand Down Expand Up @@ -45,4 +46,4 @@ async def on_voice_state_update(member, before, after):
if not member.bot:
log_id(member.id)

bot.run("", bot = False)
bot.run(token, bot = False)

0 comments on commit 4ec5954

Please sign in to comment.