-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbot.py
More file actions
83 lines (60 loc) · 1.93 KB
/
bot.py
File metadata and controls
83 lines (60 loc) · 1.93 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
#from this line to
import discord
import os
from discord.ext import commands
client = commands.Bot(command_prefix="e!")
@client.event
async def on_Ready():
print("Bot is ready")
#to this line dont change anything
#add your commands here, copy paste
# @client.command()
# async def idhr_command_likho(ctx):
# await ctx.send("us command pr jo kahe wo yahan likho")
#after this line press 2 times enter to make space then write command
@client.command()
async def pudding(ctx):
await ctx.send("Intehai koi Kamina insan hai Pudding .")
@client.command()
async def hello(ctx):
await ctx.send("Hello there baby gurl.")
@client.command()
async def phcomment(ctx):
await ctx.send("<@527429958470205451> Isko dekhein, else i would stop simping for you")
@client.command()
async def day(ctx):
await ctx.send("Today is an amazing day")
@client.command()
async def dalay(ctx):
await ctx.send("Today is an amazing day")
@client.command()
async def couldyouboostforme(ctx):
await ctx.send("Read My Name NIGGA")
@client.command()
async def perfect(ctx):
await ctx.send("Chal hun mera put chuti kr")
@client.command()
async def hey(ctx):
await ctx.send("Chal hun mera put chuti kr")
@client.command()
async def BC(ctx):
await ctx.send("Bht Cute")
@client.command()
async def join(ctx):
await ctx.send("Hazir Janab")
@client.command()
async def sakc(ctx):
await ctx.send("ABU BULARHE HAIN APKO @Xam#0489")
@client.command()
async def danedaar(ctx):
await ctx.send("ABU BULARHE HAIN APKO @BlackMamba#0468")
@client.command()
async def chutiya(ctx):
await ctx.send("ABU BULARHE HAIN APKO Pudding Senpai#0717")
@client.command()
async def kutiya(ctx):
await ctx.send("ABU BULARHE HAIN APKO Awais#5009")
@client.command()
async def banBlackMamba(ctx):
await ctx.send("User BlackMamba#0468 will be removed after 1 minute")
client.run(os.environ['BOT_KEY'])