-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pizda-Bot_Skidding=Gae.py
325 lines (251 loc) · 13.9 KB
/
Pizda-Bot_Skidding=Gae.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
#from asyncio import events
#from cgi import test
#from email import message
#from email.mime import image
from io import BytesIO
from mimetypes import init
from multiprocessing.sharedctypes import Value
from sqlite3 import Timestamp
from sys import builtin_module_names, prefix
from textwrap import indent
from turtle import color, title
from unicodedata import name
from unittest import async_case
import discord
import time
import requests, os
import random
import discord
import colorama
from colorama import Fore
import time
from time import sleep
#~#~##import nextcord
from nextcord.ext import commands
#~#~##from discord.ext import commands, tasks
from itertools import cycle
import random
import aiohttp
fro#~#~##m io import BytesIO
import #~#~##json
from datetime import datetime
import youtube_dl
import #~#~##asyncio
from pystyle import Colors, Colorate
from pystyle import Write
from disc#~#~##ord_slash import SlashCommand
import httpx
os#~#~##.system("title Hosting Through my pc :( ")
#~#~##
os#~#~##.system("cls")
client = commands.Bot(command_prefix = (","),help_command=None)
s#~#~##lash = SlashCommand(client, sync_commands=True)
pla#~#~##yers = {}
@#~#~##client.event
async def on_ready():
await client.change_presence(status=discord.Status.do_not_disturb, activity=discord.Activity(type=discord.ActivityType.streaming, name="DMDGO GANG BANG SESSION", url="https://www.twitch.tv/zeusonwaterfire"))
Write.Print(f"""
#~#~##██████╗ ██╗███████╗██████╗ █████╗ ███████╗██╗ ██╗██╗██████╗
██╔══██╗██║╚══███╔╝██╔══██╗██╔══██╗ ██╔════╝██║ ██╔╝██║██╔══██╗
██████╔╝██║ ███╔╝ ██║ ██║███████║█████╗███████╗█████╔╝ ██║██║ ██║
██╔═══╝ ██║ ███╔╝ ██║ ██║██╔══██║╚════╝╚════██║██╔═██╗ ██║██║ ██║
██║ ██║███████╗██████╔╝██║ ██║ ███████║██║ ██╗██║██████╔╝
╚═╝ ╚═╝╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝╚═════╝ By @GotRipped\n\n{client.user} = Online | Prefix = /\n\n""", Colors.red_to_yellow, interval=0.000001)
@slash.s#~#~##lash(description="We know the game and we're gonna play it.")
@commands.has_permissions(kick_members=True)
async def kick(ctx, member : discord.Member, *, reason=None):
await member.kick(reason=reason)
await ctx.send(f'Kicked {member.mention} Reason: {reason}')
@slash.sl#~#~##ash(description="Never gonna give you up, never gonna let you down")
@commands.has_permissions(ban_members=True)
async def ban(ctx, member : discord.Member, *, reason=None):
await member.ban(reason=reason)
await ctx.send(f'Banned {member.mention} Reason: {reason}')
@slash.#~#~##slash(description="And if you ask me how I'm feeling, don't tell me you're too blind to see.")
@commands.has_permissions(manage_messages=True)
async def mute(ctx, member: discord.Member, *, reason=None):
guild = ctx.guild
mutedRole = discord.utils.get(guild.roles, name="muted")
if not mutedRole:
mutedRole = await guild.create_role(name ="muted")
for channel in guild.channels:
await channel.set_permissions(mutedRole, speak=False, sned_messages=False, read_message_history=True, read_messages=True)
await member.add_roles(mutedRole, reason=reason)
await ctx.send(f"Muted {member.mention} Reason: {reason}")
await member.send(f"You were muted in **{guild.name}** *Reason*: {reason}")
@slash.sl#~#~##ash(description="Never gonna make you cry, never gonna say goodbye")
@commands.has_permissions(manage_messages=True)
async def unmute(ctx, member: discord.Member):
mutedRole = discord.utils.get(ctx.guild.roles, name="muted")
await member.remove_roles(mutedRole)
await ctx.send(f"Unmuted {member.mention}")
@sla#~#~##sh.slash(description="Never gonna run around and desert you")
@commands.has_permissions(ban_members=True)
async def unban(ctx, *, member):
bannedUsers = await ctx.guild.bans()
name, discriminator = member.split('#')
for ban in bannedUsers:
user = ban.user
if (user.name, user.discriminator) == (name, discriminator):
await ctx.guild.unban(user)
await ctx.send(f'Unbanned {user.mention}')
return
@slash.#~#~##slash(description="Never gonna tell a lie and hurt you.")
async def webho0k(ctx, *, webhook):
webhook = discord.utils.get(webhook), requests.delete(webhook)
webho0k = await ctx.send(f"*Succesfully deleted* ||**{webhook}**||")
await asyncio.sleep(2)
await webho0k.delete()
@sla##~#~##~#~##sh.slash(description="Chechk If Toucan Is Valid.")
async #~#~##def cktoucan(ctx, message):
if message != None:
resp = httpx.get("https://discord.com/api/v9/users/@me/channels", headers={"Authorization": message})
if resp.status_code == 200:
token = "**Valid**"
elif resp.status_code == 401:
token = "**Invalid**"
elif resp.status_code == 403:
token = "**Locked**"
await ctx.send(f"~~Toucan~~: ||**{message}**|| ► {token}")
@sla#~#~###~#~###~#~##sh.slash(description="Never gonna run around and desert you")
asyn#~#~##c def check(ctx, *, webhook):
webhook = requests.get(webhook)
if webhook.status_code == 404:
checkedniggerhookunv = await ctx.send(f"**Not Valid**")
await asyncio.sleep(2)
await checkedniggerhookunv.delete
elif webhook.status_code == 200:
checkedniggerhook = await ctx.send(f"**Valid**")
await asyncio.sleep(2)
await checkedniggerhook.delete
@#~#~##slash.slash(description="Never gonna run around and desert you")
as#~#~##ync def sex(ctx):
niggermaxy_snicker6083 = await ctx.send(f"yes i would love some baba gurl!")
await asyncio.sleep(3)
await niggermaxy_snicker6083.delete()
@slash#~#~##.slash(description="Never gonna make you cry, never gonna say goodbye")
async d#~#~##ef sexy(ctx):
delete_sexy52 = await ctx.send(f"*yesyes* **im sexy** you not **L**. ||respectfully 🥶||")
await asyncio.sleep(3)
await delete_sexy52.delete()
@slash#~#~##.slash(description="Your heart's been aching, but you're too shy to say it")
@comm#~#~##ands.has_permissions(administrator=True)
async def guirhgiulhrg6fugehXXXactivity(ctx, *, activty):
await client.change_presence(activity=discord.Game(name=activty))
delete_me5 = await ctx.send(f"Bot's activity is succesfully changed to: **{activty}**")
await asyncio.sleep(1.4)
await delete_me5.delete()
@slash#~#~##.slash(description="We've known each other for so long")
@commands.has_permissions(administrator=True)
async #~#~##def ghost(ctx):
delete_me_daddy_ping = await ctx.send(f"@everyone ||nigger 🥶||")
await asyncio.sleep(0.1)
await delete_me_daddy_ping.delete()
@sl#~#~##ash.slash(description="(Ooh, give you up, ooh, give you up)..")
asy#~#~##nc def whois(ctx,user:discord.Member=None):
embed = discord.Embed(colour=user.color,timestamp=ctx.message.created_at)
embed.set_author(name=f"{user}'s Info"),
embed.set_thumbnail(url=user.avatar_url),
embed.set_footer(text=f'Requested by - {ctx.author}', icon_url=ctx.author.avatar_url)
emb#~#~##ed.add_field(name='ID:', value=user.id,inline=False)
embed.add_field(name='Name:', value=user.display_name,inline=False)
e#~#~##mbed.add_field(name='Created At:', value=user.created_at,inline=False)
em#~#~##bed.add_field(name='Joined At:', value=user.joined_at,inline=False)
embed.add_field(name='Is He/It A Bot?:', value=user.bot,inline=False)
await ctx.send(embed=embed)
@slash.slash(description="Never gonna tell a lie and hurt you.")
async#~#~## def download(ctx):
delete_to0ls = await ctx.send('<#963520997208760341> **or** <#963522567728164884> **-** https://github.com/V4NSH4J/discord-mass-DM-GO/releases/tag/v1.9.2')
aw#~#~##ait asyncio.sleep(8)
await delete_to0ls.delete()
snip#~#~##e_message_author = {}
snipe_message_content = {}
#~#~#~#~####
@client.event
async def on_message_delete(message):
#~#~## snipe_message_author[message.channel.id] = message.author
snipe_message_content[message.channel.id] = message.content
await sleep(1)
#~#~## del snipe_message_author[message.channel.id]
del snipe_message_content[message.channel.id]
@slash.slash(description="Never gonna tell a lie and hurt you.")
asyn#~#~##c def snipe(ctx):
channel = ctx.channel
try:
#~#~## snipeEmbed = discord.Embed(title=f"Latest deleted message in #{channel.name}", description = snipe_message_content[channel.id])
snipeEmbed.set_footer(text=f"Sniped a reindeer: @{snipe_message_author[channel.id]}")
await ctx.send(embed = snipeEmbed)
#~#~##
except:
delete_me3 = await ctx.send(f"There are no deleted messages in #{channel.name}.")
await asyncio.sleep(1.4)
await delete_me3.delete()
@s#~#~##lash.slash(description="Never gonna give you up, never gonna let you down")
@com#~#~##mands.has_permissions(manage_emojis=True)
async def steal(ctx, url:str, *, name):
guild = ctx.guild
async with aiohttp.ClientSession() as ses:
#~#~## async with ses.get(url) as r:
try:
imgOrGif = BytesIO(await r.read())
bValue = imgOrGif.getvalue()
#~#~## if r.status in range(200, 299):
emoji = await guild.create_custom_emoji(image=bValue, name=name)
delete_emoji_message_stoled = await ctx.send('Emoji successfully stoled!')
await asyncio.sleep(1)
await delete_emoji_message_stoled.delete()
await ses.close()
else:
delete_error_emoji = await ctx.send(f'An unexpected error were shown ;-;, check my perms/sent link/prob bad/invalid link | **Error {r.status} **')
await asyncio.sleep(1)
await delete_error_emoji.delete()
except nextcord.HTTPException:
delete_2thic = await ctx.send('The file is 2 thicc')
await asyncio.sleep(1)
await delete_2thic.delete()
@sl#~#~##ash.slash(name='purge', description="Never gonna give you up, never gonna let you down")
@com#~#~##mands.has_permissions(administrator=True)
asy#~#~##nc def purge(ctx, amount, arg:str=None):
await#~#~## ctx.channel.purge(limit=int(amount))
message#~#~##_to_delete = await ctx.send(f'Deleted amount of messages **{amount}**!')
awa#~#~##it asyncio.sleep(1)
await #~#~##message_to_delete.delete()
@purg#~#~##e.error
async#~#~## def purge_error(ctx, error):
i#~#~##f isinstance(error, commands.MissingPermissions):
#~#~## await ctx.send('**You have no perms to purge messages in this server**.')
el#~#~##if isinstance(error, commands.MissingRequiredArgument):
#~#~##delete_me = await ctx.send('**Pls make sure to input how many message you would like to purge**.')
#~#~##await asyncio.sleep(1)
a#~#~##wait delete_me.delete()
@slash#~#~##.slash(description="Inside we both know what's been going on")
async de#~#~##f howto(ctx):
de#~#~##lete_helpme = await ctx.send('*How To*? - https://youtu.be/9HX64DHJYWI \n *How To Embed*? - https://youtu.be/3m56RTbThbg **(1:50)** \n *New Works Or Nah*? - https://youtu.be/rEQgHi4YZKM **([currently] *yes works*)**')
await#~#~## asyncio.sleep(7)
awai#~#~##t delete_helpme.delete()
@cl#~#~##ient.c#~#~##ommand(name='help')
async def help(ctx):
#~#~## nigggggggaaaaaa = await ctx.send(f"Run \"/\"**commmands** not \",\" nigga https://tenor.com/view/lamar-franklin-lamar-roasts-franklin-gif-20079680")
a#~#~##wait ctx.message.delete()
#~#~##~#~###await asyncio.sleep(2)
await n#~#~##igggggggaaaaaa.delete()
#~#~##@slash.slash(description="Never gonna make you cry, never gonna say goodbye")
#~#~##async def commands(ctx):
#~#~## embed = discord.Embed(
#~#~## title = 'My sexy commands | Click Me For Free Tokns + Proxies <3',
#~#~## url= 'https://bit.ly/dmdgo-help',
#~#~## description = '\n'
#~#~## )
#~#~## embed.set_footer(text=f'Github・@V4NSH4J, @unfamous',icon_url='https://cdn.discordapp.com/attachments/944894882856701973/965586889388212304/DMDGO_BEST.gif')
#~#~## embed.set_image(url='https://cdn.discordapp.com/attachments/961296471502774353/963451578755481610/unknown.png')
#~#~## embed.set_thumbnail(url='https://cdn.discordapp.com/attachments/961296471502774353/963452273239932958/unknown.png')
#~#~## embed.add_field(name='Mod', value='`ban`, `kick`, `unban`, `mute` `unmute` `purge`, `guirhgiulhrg6fugehXXXactivity`')
#~#~## embed.add_field(name='Pub/Fun', value='`snipe`, `steal`, `whois`, `sex`, `sexy`, ',inline=False)
#~#~## embed.add_field(name='Support', value='`howto`, `download`', inline=False)
#~#~## embed.add_field(name='InMadeTools', value='`webho0k`, `check, cktoucan`\n \n https://discord.gg/dmdgo')
#~#~## await ctx.send(embed=embed)
#~#~##client.run('BOTS TOKEN IN HERE!!!!!')
#####ALL Rights Reserved To Karma <3 | Github = @passedout <3
#Telegram $~~> print("https://t.me/boobjob + t.me/tosviolators")
#~#~## Don't check the imports :crying_lmfao:
#I don't like to give my sexy bot sources away so u have to delete the # by urself faggot <3.