-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathmain.py
70 lines (52 loc) · 1.87 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import random
import discord
from discord.ext import commands
# Your token here, inside the ""
TOKEN = ""
# Channel to send welcome messages to
WELCOME_CHANNEL = "welcome"
# All the nicknames for the random_nickname command
NICKS = ["example1", "example2", "example3"]
# You can change the prefix here
bot = commands.Bot(command_prefix="!")
@bot.event
async def on_ready():
print("Bot started")
@bot.event
async def on_member_join(member):
welcome_channel = discord.utils.get(
member.guild.channels, name=WELCOME_CHANNEL)
# Feel free to change this message!
await welcome_channel.send(f"Welcome {member.mention}! Please read our rules and have a great time!")
@commands.has_permissions(ban_members=True)
@bot.command()
async def ban(ctx, user: discord.Member):
"""Ban the given user"""
await ctx.guild.ban(user, delete_message_days=0)
await ctx.send(f"Banned {user}")
@commands.has_permissions(ban_members=True)
@bot.command()
async def unban(ctx, user: discord.User):
"""Unban the given user"""
await ctx.guild.unban(user)
await ctx.send(f"Unbanned {user}")
@commands.has_permissions(kick_members=True)
@bot.command()
async def kick(ctx, user: discord.User):
"""Kick the given user"""
await ctx.guild.kick(user)
await ctx.send(f"Kicked {user}")
@bot.command(aliases=["rnick"])
async def random_nick(ctx):
"""Set your nickname to a random one"""
new_nick = random.choice(NICKS)
await ctx.author.edit(nick=new_nick)
await ctx.send(f"Your new nickname is {new_nick}")
@commands.has_permissions(manage_nicknames=True)
@bot.command(aliases=["change_name"])
async def change_nick(ctx, user: discord.Member, *, new_nick):
"""Change somebody else's nickname"""
await user.edit(nick=new_nick)
await ctx.send(f"Changed the nickname of {user.mention} to `{new_nick}`")
if __name__ == "__main__":
bot.run(TOKEN)