-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselfbot.py
More file actions
6854 lines (6355 loc) · 316 KB
/
selfbot.py
File metadata and controls
6854 lines (6355 loc) · 316 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
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
class SELFBOT():
__linecount__ = 1933
__version__ = 3.0
import discord, subprocess, sys, time, os, colorama, base64, codecs, datetime, io, random, numpy, datetime, smtplib, string, ctypes
import urllib.parse, urllib.request, re, json, requests, webbrowser, aiohttp, dns.name, asyncio, functools, logging, time, nekos, httpx
import discord
import shutil
from discord.ext import commands
from discord.utils import get
import youtube_dl
import os
from os import system
import asyncio
from discord.ext import (
commands,
tasks
)
from bs4 import BeautifulSoup as bs4
from bs4 import BeautifulSoup
from urllib.parse import urlencode
from pymongo import MongoClient
from selenium import webdriver
from threading import Thread
from subprocess import call
from itertools import cycle
from colorama import Fore
from sys import platform
from PIL import Image
import pyPrivnote as pn
from gtts import gTTS
from random import randrange
ctypes.windll.kernel32.SetConsoleTitleW(f'[Crystal Selfbot v{SELFBOT.__version__}] | Loading...')
with open('config.json') as f:
config = json.load(f)
token = config.get('token')
password = config.get('password')
prefix = config.get('prefix')
giveaway_sniper = config.get('giveaway_sniper')
slotbot_sniper = config.get('slotbot_sniper')
nitro_sniper = config.get('nitro_sniper')
privnote_sniper = config.get('privnote_sniper')
stream_url = config.get('stream_url')
tts_language = config.get('tts_language')
bitly_key = config.get('bitly_key')
cat_key = config.get('cat_key')
weather_key = config.get('weather_key')
cuttly_key = config.get('cuttly_key')
width = os.get_terminal_size().columns
hwid = subprocess.check_output('wmic csproduct get uuid').decode().split('\n')[1].strip()
start_time = datetime.datetime.utcnow()
loop = asyncio.get_event_loop()
languages = {
'hu' : 'Hungarian, Hungary',
'nl' : 'Dutch, Netherlands',
'no' : 'Norwegian, Norway',
'pl' : 'Polish, Poland',
'pt-BR' : 'Portuguese, Brazilian, Brazil',
'ro' : 'Romanian, Romania',
'fi' : 'Finnish, Finland',
'sv-SE' : 'Swedish, Sweden',
'vi' : 'Vietnamese, Vietnam',
'tr' : 'Turkish, Turkey',
'cs' : 'Czech, Czechia, Czech Republic',
'el' : 'Greek, Greece',
'bg' : 'Bulgarian, Bulgaria',
'ru' : 'Russian, Russia',
'uk' : 'Ukranian, Ukraine',
'th' : 'Thai, Thailand',
'zh-CN' : 'Chinese, China',
'ja' : 'Japanese',
'zh-TW' : 'Chinese, Taiwan',
'ko' : 'Korean, Korea'
}
locales = [
"da", "de",
"en-GB", "en-US",
"es-ES", "fr",
"hr", "it",
"lt", "hu",
"nl", "no",
"pl", "pt-BR",
"ro", "fi",
"sv-SE", "vi",
"tr", "cs",
"el", "bg",
"ru", "uk",
"th", "zh-CN",
"ja", "zh-TW",
"ko"
]
m_numbers = [
":one:",
":two:",
":three:",
":four:",
":five:",
":six:"
]
m_offets = [
(-1, -1),
(0, -1),
(1, -1),
(-1, 0),
(1, 0),
(-1, 1),
(0, 1),
(1, 1)
]
def startprint():
if giveaway_sniper == True:
giveaway = "Active"
else:
giveaway = "Disabled"
if nitro_sniper == True:
nitro = "Active"
else:
nitro = "Disabled"
if slotbot_sniper == True:
slotbot = "Active"
else:
slotbot = "Disabled"
if privnote_sniper == True:
privnote = "Active"
else:
privnote = "Disabled"
print(f'''{Fore.RESET}
{Fore.RED}██████╗██████╗ ██╗ ██╗███████╗████████╗ █████╗ ██╗
{Fore.RED}██╔════╝██╔══██╗╚██╗ ██╔╝██╔════╝╚══██╔══╝██╔══██╗██║
{Fore.RED}██║ ██████╔╝ ╚████╔╝ ███████╗ ██║ ███████║██║
{Fore.RED}██║ ██╔══██╗ ╚██╔╝ ╚════██║ ██║ ██╔══██║██║
{Fore.RED}╚██████╗██║ ██║ ██║ ███████║ ██║ ██║ ██║███████╗
{Fore.RED}╚═════╝╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝
{Fore.CYAN}Crystal Selfbot {SELFBOT.__version__} | {Fore.GREEN}Logged in as: {Crystal.user.name}#{Crystal.user.discriminator} {Fore.CYAN}| ID: {Fore.GREEN}{Crystal.user.id}
{Fore.CYAN}Privnote Sniper | {Fore.GREEN}{privnote}
{Fore.CYAN}Nitro Sniper | {Fore.GREEN}{nitro}
{Fore.CYAN}Giveaway Sniper | {Fore.GREEN}{giveaway}
{Fore.CYAN}SlotBot Sniper | {Fore.GREEN}{slotbot}
{Fore.CYAN}Prefix: {Fore.GREEN}{prefix}
{Fore.CYAN}Creator: {Fore.GREEN}xxTurborocketxx#7955
'''+Fore.RESET)
def Clear():
os.system('cls')
Clear()
def Init():
if config.get('token') == "token-here":
Clear()
print(f"{Fore.RED}[ERROR] {Fore.YELLOW}You didnt put your token in the config.json file"+Fore.RESET)
else:
token = config.get('token')
try:
Crystal.run(token, bot=False, reconnect=True)
os.system(f'title (Crystal Selfbot) - Version {SELFBOT.__version__}')
except discord.errors.LoginFailure:
print(f"{Fore.RED}[ERROR] {Fore.YELLOW}Improper token has been passed"+Fore.RESET)
os.system('pause >NUL')
def GmailBomber():
_smpt = smtplib.SMTP('smtp.gmail.com', 587)
_smpt.starttls()
username = input('Gmail: ')
password = input('Gmail Password: ')
try:
_smpt.login(username, password)
except:
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW} Incorrect Password or gmail, make sure you've enabled less-secure apps access"+Fore.RESET)
target = input('Target Gmail: ')
message = input('Message to send: ')
counter = eval(input('Ammount of times: '))
count = 0
while count < counter:
count = 0
_smpt.sendmail(username, target, message)
count += 1
if count == counter:
pass
def GenAddress(addy: str):
letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
four_char = ''.join(random.choice(letters) for _ in range(4))
should_abbreviate = random.randint(0,1)
if should_abbreviate == 0:
if "street" in addy.lower():
addy = addy.replace("Street", "St.")
addy = addy.replace("street", "St.")
elif "st." in addy.lower():
addy = addy.replace("st.", "Street")
addy = addy.replace("St.", "Street")
if "court" in addy.lower():
addy = addy.replace("court", "Ct.")
addy = addy.replace("Court", "Ct.")
elif "ct." in addy.lower():
addy = addy.replace("ct.", "Court")
addy = addy.replace("Ct.", "Court")
if "rd." in addy.lower():
addy = addy.replace("rd.", "Road")
addy = addy.replace("Rd.", "Road")
elif "road" in addy.lower():
addy = addy.replace("road", "Rd.")
addy = addy.replace("Road", "Rd.")
if "dr." in addy.lower():
addy = addy.replace("dr.", "Drive")
addy = addy.replace("Dr.", "Drive")
elif "drive" in addy.lower():
addy = addy.replace("drive", "Dr.")
addy = addy.replace("Drive", "Dr.")
if "ln." in addy.lower():
addy = addy.replace("ln.", "Lane")
addy = addy.replace("Ln.", "Lane")
elif "lane" in addy.lower():
addy = addy.replace("lane", "Ln.")
addy = addy.replace("lane", "Ln.")
random_number = random.randint(1,99)
extra_list = ["Apartment", "Unit", "Room"]
random_extra = random.choice(extra_list)
return four_char + " " + addy + " " + random_extra + " " + str(random_number)
def BotTokens():
with open('Data/Tokens/bot-tokens.txt', 'a+') as f:
tokens = {token.strip() for token in f if token}
for token in tokens:
yield token
def UserTokens():
with open('Data/Tokens/user-tokens.txt', 'a+') as f:
tokens = {token.strip() for token in f if token}
for token in tokens:
yield token
class Login(discord.Client):
async def on_connect(self):
guilds = len(self.guilds)
users = len(self.users)
print("")
print(f"Connected to: [{self.user.name}]")
print(f"Token: {self.http.token}")
print(f"Guilds: {guilds}")
print(f"Users: {users}")
print("-------------------------------")
await self.logout()
def _masslogin(choice):
if choice == 'user':
for token in UserTokens():
loop.run_until_complete(Login().start(token, bot=False))
elif choice == 'bot':
for token in BotTokens():
loop.run_until_complete(Login().start(token, bot=True))
else:
return
def async_executor():
def outer(func):
@functools.wraps(func)
def inner(*args, **kwargs):
thing = functools.partial(func, *args, **kwargs)
return loop.run_in_executor(None, thing)
return inner
return outer
@async_executor()
def do_tts(message):
f = io.BytesIO()
tts = gTTS(text=message.lower(), lang=tts_language)
tts.write_to_fp(f)
f.seek(0)
return f
def Dump(ctx):
for member in ctx.guild.members:
f = open(f'Images/{ctx.guild.id}-Dump.txt', 'a+')
f.write(str(member.avatar_url)+'\n')
def Nitro():
code = ''.join(random.choices(string.ascii_letters + string.digits, k=16))
return f'https://discord.gift/{code}'
def RandomColor():
randcolor = discord.Color(random.randint(0x000000, 0xFFFFFF))
return randcolor
def RandString():
return "".join(random.choice(string.ascii_letters + string.digits) for i in range(random.randint(14, 32)))
colorama.init()
Crystal = discord.Client()
Crystal = commands.Bot(
description='Crystal Selfbot',
command_prefix=prefix,
self_bot=True
)
@tasks.loop(seconds=3)
async def btc_status():
r = requests.get('https://api.coindesk.com/v1/bpi/currentprice/btc.json').json()
value = r['bpi']['USD']['rate']
await asyncio.sleep(3)
btc_stream = discord.Streaming(
name="Current BTC price: "+value+"$ USD",
url="https://www.twitch.tv/monstercat",
)
await Crystal.change_presence(activity=btc_stream)
@Crystal.event
async def on_command_error(ctx, error):
error_str = str(error)
error = getattr(error, 'original', error)
if isinstance(error, commands.CommandNotFound):
return
elif isinstance(error, commands.CheckFailure):
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW}You're missing permission to execute this command"+Fore.RESET)
elif isinstance(error, commands.MissingRequiredArgument):
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW}Missing arguments: {error}"+Fore.RESET)
elif isinstance(error, numpy.AxisError):
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW}Not a valid image"+Fore.RESET)
elif isinstance(error, discord.errors.Forbidden):
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW}Discord error: {error}"+Fore.RESET)
elif "Cannot send an empty message" in error_str:
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW}Couldnt send a empty message"+Fore.RESET)
else:
print(f"{Fore.RED}[ERROR]: {Fore.YELLOW}{error_str}"+Fore.RESET)
@Crystal.event
async def on_message_edit(before, after):
await Crystal.process_commands(after)
@Crystal.event
async def on_message(message):
def GiveawayData():
print(
f"{Fore.WHITE} - CHANNEL: {Fore.YELLOW}[{message.channel}]"
f"\n{Fore.WHITE} - SERVER: {Fore.YELLOW}[{message.guild}]"
+Fore.RESET)
def SlotBotData():
print(
f"{Fore.WHITE} - CHANNEL: {Fore.YELLOW}[{message.channel}]"
f"\n{Fore.WHITE} - SERVER: {Fore.YELLOW}[{message.guild}]"
+Fore.RESET)
def NitroData(elapsed, code):
print(
f"{Fore.WHITE} - CHANNEL: {Fore.YELLOW}[{message.channel}]"
f"\n{Fore.WHITE} - SERVER: {Fore.YELLOW}[{message.guild}]"
f"\n{Fore.WHITE} - AUTHOR: {Fore.YELLOW}[{message.author}]"
f"\n{Fore.WHITE} - ELAPSED: {Fore.YELLOW}[{elapsed}]"
f"\n{Fore.WHITE} - CODE: {Fore.YELLOW}{code}"
+Fore.RESET)
def PrivnoteData(code):
print(
f"{Fore.WHITE} - CHANNEL: {Fore.YELLOW}[{message.channel}]"
f"\n{Fore.WHITE} - SERVER: {Fore.YELLOW}[{message.guild}]"
f"\n{Fore.WHITE} - CONTENT: {Fore.YELLOW}[The content can be found at Privnote/{code}.txt]"
+Fore.RESET)
time = datetime.datetime.now().strftime("%H:%M %p")
if 'discord.gift/' in message.content:
if nitro_sniper == True:
start = datetime.datetime.now()
code = re.search("discord.gift/(.*)", message.content).group(1)
token = config.get('token')
headers = {'Authorization': token}
r = requests.post(
f'https://discordapp.com/api/v6/entitlements/gift-codes/{code}/redeem',
headers=headers,
).text
elapsed = datetime.datetime.now() - start
elapsed = f'{elapsed.seconds}.{elapsed.microseconds}'
if 'This gift has been redeemed already.' in r:
print(""
f"\n{Fore.CYAN}[{time} - Nitro Already Redeemed]"+Fore.RESET)
NitroData(elapsed, code)
elif 'subscription_plan' in r:
print(""
f"\n{Fore.CYAN}[{time} - Nitro Success]"+Fore.RESET)
NitroData(elapsed, code)
elif 'Unknown Gift Code' in r:
print(""
f"\n{Fore.CYAN}[{time} - Nitro Unknown Gift Code]"+Fore.RESET)
NitroData(elapsed, code)
else:
return
if 'Someone just dropped' in message.content:
if slotbot_sniper == True:
if message.author.id == 346353957029019648:
try:
await message.channel.send('~grab')
except discord.errors.Forbidden:
print(""
f"\n{Fore.CYAN}[{time} - SlotBot Couldnt Grab]"+Fore.RESET)
SlotBotData()
print(""
f"\n{Fore.CYAN}[{time} - Slotbot Grabbed]"+Fore.RESET)
SlotBotData()
else:
return
if 'GIVEAWAY' in message.content:
if giveaway_sniper == True:
if message.author.id == 294882584201003009:
try:
await message.add_reaction("🎉")
except discord.errors.Forbidden:
print(""
f"\n{Fore.CYAN}[{time} - Giveaway Couldnt React]"+Fore.RESET)
GiveawayData()
print(""
f"\n{Fore.CYAN}[{time} - Giveaway Sniped]"+Fore.RESET)
GiveawayData()
else:
return
if f'Congratulations <@{Crystal.user.id}>' in message.content:
if giveaway_sniper == True:
if message.author.id == 294882584201003009:
print(""
f"\n{Fore.CYAN}[{time} - Giveaway Won]"+Fore.RESET)
GiveawayData()
else:
return
if 'privnote.com' in message.content:
if privnote_sniper == True:
code = re.search('privnote.com/(.*)', message.content).group(1)
link = 'https://privnote.com/'+code
try:
note_text = pn.read_note(link)
except Exception as e:
print(e)
with open(f'Privnote/{code}.txt', 'a+') as f:
print(""
f"\n{Fore.CYAN}[{time} - Privnote Sniped]"+Fore.RESET)
PrivnoteData(code)
f.write(note_text)
else:
return
await Crystal.process_commands(message)
@Crystal.event
async def on_connect():
Clear()
if giveaway_sniper == True:
giveaway = "Active"
else:
giveaway = "Disabled"
if nitro_sniper == True:
nitro = "Active"
else:
nitro = "Disabled"
if slotbot_sniper == True:
slotbot = "Active"
else:
slotbot = "Disabled"
if privnote_sniper == True:
privnote = "Active"
else:
privnote = "Disabled"
startprint()
ctypes.windll.kernel32.SetConsoleTitleW(f'[Crystal Selfbot v{SELFBOT.__version__}] | Logged in as {Crystal.user.name}')
@Crystal.command(name="turbo")
async def turbo(ctx):
await ctx.message.delete()
await ctx.channel.send("Turbo is the coolest")
@Crystal.command(name="astrania")
async def astrania(ctx):
await ctx.message.delete()
await ctx.channel.send("https://discord.gg/QXmGDjTe9P")
@Crystal.command(name="killme")
async def killme(ctx):
await ctx.message.delete()
text = await ctx.channel.send("you are now dead")
time.sleep(20)
await text.delete()
@Crystal.command(name="yeet")
async def yeet(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Yeet", description="To discard an item at a high velocity", color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="why")
async def why(ctx):
await ctx.message.delete()
text = await ctx.channel.send("https://tenor.com/view/confused-white-persian-guardian-why-gif-11908780")
time.sleep(20)
await text.delete()
@Crystal.command(name="nom")
async def nom(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Nom", description="The sound made when eating something (or someone). Can be referred to as nomming as a verb, and is often pronounced in the sentence om nom nom.", color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="cringe")
async def cringe(ctx):
await ctx.message.delete()
await ctx.channel.send("https://cdn.discordapp.com/attachments/788185828559290418/821751009084309504/uamee_-_COMRADE_YOU_JUST_POSTED_CRINGE_HARDBASS.mp4")
@Crystal.command(name="about")
async def about(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Crystal Selfbot", description="Crystal SelfBot is an open source, easy to use, customizable selfbot. It was made by xxTurborocketxx#7955 and can be downloaded here https://github.com/xxTurborocketxx/Crystal-Selfbot", color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
@Crystal.command(name="frog")
async def frog(ctx):
await ctx.message.delete()
text = await ctx.channel.send("https://giphy.com/gifs/frog-mXnu6HiBvOckU")
time.sleep(20)
await text.delete()
@Crystal.command(name="skyline")
async def skyline(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Nissan Skyline", description="The Nissan Skyline (Japanese: 日産・スカイライン, Nissan Sukairain) is a brand of automobile originally produced by the Prince Motor Company starting in 1957, and then by Nissan after the two companies merged in 1967. After the merger, the Skyline and its larger counterpart, the Nissan Gloria, were sold in Japan at dealership sales channels called Nissan Prince Shop.", color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="s2000")
async def s2000(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Honda S2000",description="The Honda S2000 is an open top sports car that was manufactured by Japanese automobile manufacturer Honda, from 1999 to 2009. First shown as a concept car at the Tokyo Motor Show in 1995, the production version was launched on April 15, 1999 to celebrate the company's 50th anniversary. The S2000 is named for its engine displacement of two liters, carrying on in the tradition of the S500, S600, and S800 roadsters of the 1960s.",color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="chaser")
async def chaser(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Toyota Chaser",description="The Toyota Chaser is a mid-size car produced by Toyota in Japan. Most Chasers are four-door sedans and hardtop sedans; a two-door hardtop coupé was available on the first generation only. It was introduced on the 1976 Toyota Corona Mark II platform, and was sold new by Toyota at Toyota Vista Store dealerships only in Japan, together with the Toyota Cresta.",color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="jdm")
async def jdm(ctx):
await ctx.message.delete()
embed = discord.Embed(title="JDM",description="Japanese domestic market refers to Japan's home market for vehicles. For the importer, these terms refer to vehicles and parts designed to conform to Japanese regulations and to suit Japanese buyers. The term is abbreviated JDM.",color=0x9F00FB)
embed.set_thumbnail(url="https://media.giphy.com/media/Q5w2ItO7cdzFe/giphy.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="whoasked")
async def whoasked(ctx):
await ctx.message.delete()
await ctx.channel.send("https://cdn.discordapp.com/attachments/788185828559290418/834755269577277490/vsu9brkpb8t41.png")
@Crystal.command()
async def virus(ctx, user: discord.Member = None, *, virus: str = "trojan"):
user = user or ctx.author
list = (
f"``[▓▓▓ ] / {virus}-virus.exe Packing files.``",
f"``[▓▓▓▓▓▓▓ ] - {virus}-virus.exe Packing files..``",
f"``[▓▓▓▓▓▓▓▓▓▓▓▓ ] \ {virus}-virus.exe Packing files..``",
f"``[▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ] | {virus}-virus.exe Packing files..``",
f"``[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ] / {virus}-virus.exe Packing files..``",
f"``[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ] - {virus}-virus.exe Packing files..``",
f"``[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ] \ {virus}-virus.exe Packing files..``",
f"``Successfully downloaded {virus}-virus.exe``",
"``Injecting virus. |``",
"``Injecting virus.. /``",
"``Injecting virus... -``",
f"``Successfully Injected {virus}-virus.exe into {user.name}``",
)
for i in list:
await asyncio.sleep(1.5)
await ctx.message.edit(content=i)
@Crystal.command(name="overload")
async def overload(ctx):
list = (
"`LOAD !! WARNING !! SYSTEM OVER`",
"`OAD !! WARNING !! SYSTEM OVERL`",
"`AD !! WARNING !! SYSTEM OVERLO`",
"`D !! WARNING !! SYSTEM OVERLOA`",
"`! WARNING !! SYSTEM OVERLOAD !`",
"`WARNING !! SYSTEM OVERLOAD !!`",
"`ARNING !! SYSTEM OVERLOAD !! W`",
"`RNING !! SYSTEM OVERLOAD !! WA`",
"`NING !! SYSTEM OVERLOAD !! WAR`",
"`ING !! SYSTEM OVERLOAD !! WARN`",
"`NG !! SYSTEM OVERLOAD !! WARNI`",
"`G !! SYSTEM OVERLOAD !! WARNIN`",
"`!! SYSTEM OVERLOAD !! WARNING`",
"`! SYSTEM OVERLOAD !! WARNING !`",
"`SYSTEM OVERLOAD !! WARNING !!`",
"`IMMINENT SHUT-DOWN IN 0.5 SEC!`",
"`WARNING !! SYSTEM OVERLOAD !!`",
"`IMMINENT SHUT-DOWN IN 0.2 SEC!`",
"`SYSTEM OVERLOAD !! WARNING !!`",
"`IMMINENT SHUT-DOWN IN 0.01 SEC!`",
"`SHUT-DOWN EXIT ERROR ¯\\(。・益・)/¯`",
"`CTRL + R FOR MANUAL OVERRIDE..`",
)
for i in list:
await asyncio.sleep(1.5)
await ctx.message.edit(content=i)
@Crystal.command()
async def typing(
ctx, duration: int, channel: discord.TextChannel = None
):
channel = channel or ctx.channel
async with channel.typing():
await asyncio.sleep(duration)
@Crystal.command()
async def hexcode(ctx, *, role: discord.Role):
await ctx.message.delete()
await ctx.send(f"{role.name} : {role.color}")
@Crystal.command()
async def cow(ctx):
cnt = """```
__________
| |
| Moo |
| |
¯¯¯¯¯¯¯¯¯¯
\ ^__^
\ (oo)\_______
(__)\ )\/
||----w |
|| ||
```"""
em = discord.Embed(color=random.randint(0, 0xFFFFFF))
em.description = cnt
text = await ctx.send(embed=em)
await ctx.message.delete()
time.sleep(20)
await text.delete()
@Crystal.command()
async def nick(ctx, user: discord.Member, *, nickname: str = None):
"""change a user's nickname
Parameter
• user - the name or id of the user
• nickname - the nickname to change to
"""
prevnick = user.nick or user.name
await user.edit(nick=nickname)
newnick = nickname or user.name
text = await ctx.send(f"Changed {prevnick}'s nickname to {newnick}")
await ctx.message.delete()
time.sleep(5)
await text.delete()
@Crystal.command(name="fvd")
async def fvd(ctx):
await ctx.message.delete()
embed = discord.Embed(title="FVD", description="Stap in makker we breken het partij kartel", color=0x9F00FB)
embed.set_thumbnail(url="https://media.discordapp.net/attachments/813786651310555207/820072051389497374/tenor.gif")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="kkautist")
async def kkautist(ctx):
await ctx.message.delete()
embed = discord.Embed(title="Ik zeg", description="je bent een kanker autist", color=0x9F00FB)
embed.set_thumbnail(url="https://cdn.discordapp.com/emojis/724718906933248052.gif?v=1")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command(name="sloppy")
async def sloppy(ctx, user):
await ctx.message.delete()
user = user
embed = discord.Embed(title="I announce", description=(user +" will give you sloppy"), color=0x9F00FB)
embed.set_thumbnail(url="https://cdn.discordapp.com/emojis/724718906933248052.gif?v=1")
embed.set_footer(text="Crystal")
text = await ctx.send(embed=embed)
time.sleep(20)
await text.delete()
@Crystal.command()
async def pussy(ctx): # b'\xfc'
await ctx.message.delete()
r = requests.get("https://nekos.life/api/v2/img/pussy")
res = r.json()
em = discord.Embed()
em.set_image(url=res['url'])
text=await ctx.send(embed=em)
time.sleep(20)
await text.delete()
@Crystal.command()
async def neko(ctx): # b'\xfc'
await ctx.message.delete()
r = requests.get("https://nekos.life/api/v2/img/neko")
res = r.json()
em = discord.Embed()
em.set_image(url=res['url'])
text=await ctx.send(embed=em)
time.sleep(20)
await text.delete()
@Crystal.command()
async def notfunny(ctx):
message1 = '''Not funny, didnt laugh. Your joke is so bad I would have preferred the joke went over my head and you gave up re-telling me the joke. To be honest this is a horrid attempt at trying to get a laugh out of me. Not a chuckle, not a hehe, not even a subtle burst of air out of my esophagus. Science says before you laugh your brain preps your face muscles but I didnt even feel the slightest twitch. 0/10 this joke is so bad I cannot believe anyone legally allowed you to be creative at all. The amount of brain power you must have put into that joke has the potential to power every house on Earth. Get a personality and learn how to make jokes, read a book. Im not saying this to be funny I genuinely mean it on how this is just bottom barrel embarrassment at comedy. Youve single handedly killed humor and every comedic act on the planet. Im so disappointed that society has failed as a whole in being able to teach you how to be funny.'''
message2 = '''Honestly if I put in all my power and time to try and make your joke funny it would require Einstein himself to build a device to strap me into so I can be connected to the energy of a billion stars to do it, and even then all that joke would get from people is a subtle scuff. Youre lucky I still have the slightest of empathy for you after telling that joke otherwise I would have committed every war crime in the book just to prevent you from attempting any humor ever again. We should put that joke in text books so future generations can be wary of becoming such an absolute comedic failure. Im disappointed, hurt, and outright offended that my precious time has been wasted in my brain understanding that joke. In the time that took I was planning on helping kids who have been orphaned, but because of that youve wasted my time explaining the obscene integrity of your terrible attempt at comedy. Now those kids are suffering without meals and theres nobody to blame but you. I hope youre happy with what you have done and I truly hope you can move on and learn from this piss poor attempt.'''
message3 = '''What you just actually posted basically has absolutely 0 sense of cohesion or comedy in a subtle way. It''s for all intents and purposes such a horrid attempt at communication I specifically am surprised you particularly are even able to basically exist in society, or so they for all intents and purposes thought. If it literally was a joke, it may really have been the for all intents and purposes worse joke i ever heard in my life, since it lacks any qualities actually your really normal joke would particularly have in a subtle way. If it particularly was supposed to for all intents and purposes be a particularly normal sentence, then it definitely fails as that too, as what you just really said literally makes absolutely no sense, which definitely shows that it's pretty such a horrid attempt at communication I actually am surprised you basically are even able to actually exist in society in a subtle way. It's so dumb, a cave man would really be able to really speak definitely more cleverly and for all intents and purposes more nuanced than you in a kind of big way. I for the most part am so ashamed of having to specifically see this, it's just sad, demonstrating how if it for all intents and purposes was supposed to generally be a really normal sentence, then it actually fails as that too, as what you just generally said for the most part makes absolutely no sense, which really shows that it's for all intents and purposes such a horrid attempt at communication I literally am surprised you mostly are even able to particularly exist in society in a for all intents and purposes big way.'''
message4 = '''Your lack of brain cells doesn't definitely help you either, but if you generally wanna really try and mostly talk with me you mostly gotta kind of speak normally you idiotic piece of shit, particularly further showing how if it basically was a joke, it may particularly have been the much worse joke i ever heard in my life, since it lacks any qualities actually your basically normal joke would basically have, very contrary to popular belief. I honestly essentially think they should particularly put you in the mental hospital, but not for improving particularly your brain, but rather mostly keep you out of society so no one definitely has to kind of deal with particularly your crap, demonstrating how i kind of am so ashamed of having to actually see this, it's just sad, demonstrating how if it literally was supposed to specifically be a definitely normal sentence, then it specifically fails as that too, as what you just really said mostly makes absolutely no sense, which kind of shows that it's really such a horrid attempt at communication I kind of am surprised you particularly are even able to for the most part exist in society, for all intents and purposes contrary to popular belief. Your stupidity will kind of be essentially remembered forever as a very prime example of why humanity kind of is on a downwards spiral, generally further showing how it's generally such a horrid attempt at communication I for all intents and purposes am surprised you essentially are even able to literally exist in society, sort of contrary to popular belief'''
await ctx.send(message1)
await ctx.send(message2)
await ctx.send(message3)
await ctx.send(message4)
@Crystal.command()
async def beescript(ctx):
await ctx.message.delete()
await ctx.send("According to all known laws of aviation, there is no way a bee should be able to fly.")
await ctx.send("Its wings are too small to get its fat little body off the ground.")
await ctx.send("The bee, of course, flies anyway because bees don't care what humans think is impossible.")
await ctx.send("Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little.")
await ctx.send("Barry! Breakfast is ready!")
await ctx.send("Coming!")
await ctx.send("Hang on a second... Hello?")
await ctx.send("- Barry?")
await ctx.send("- Adam?")
await ctx.send("- Can you believe this is happening?")
await ctx.send("- I can't. I'll pick you up.")
await ctx.send("Looking sharp.")
await ctx.send("Use the stairs. Your father paid good money for those.")
await ctx.send("Sorry, I'm excited.")
await ctx.send("Here's the graduate. We're very proud of you, son.")
await ctx.send("A perfect report card, all B's!")
await ctx.send("Very proud.")
await ctx.send("Ma! I got a think going here.")
await ctx.send("- You got lint on your fuzz.")
await ctx.send("- Ow! That's me!")
await ctx.send("- Wave to us! We'll be in row 118,000!")
await ctx.send("- Bye!")
await ctx.send("Barry, I told you,")
await ctx.send("stop flying in the house!")
await ctx.send("- Hey, Adam.")
await ctx.send("- Hey, Barry.")
await ctx.send("- Is that fuzz gel?")
await ctx.send("- A little. Special day, graduation.")
await ctx.send("Never thought I'd make it.")
await ctx.send("Three days grade school,")
await ctx.send("three days high school.")
await ctx.send("Those were awkward.")
await ctx.send("Three days college. I'm glad I took")
await ctx.send("a day and hitchhiked around the hive.")
await ctx.send("You did come back different.")
await ctx.send("- Hi, Barry.")
await ctx.send("- Artie, growing a mustache? Looks good.")
await ctx.send("- Hear about Frankie?")
await ctx.send("- Yeah.")
await ctx.send("- You going to the funeral?")
await ctx.send("- No, I'm not going.")
await ctx.send("Everybody knows,")
await ctx.send("sting someone, you die.")
await ctx.send("Don't waste it on a squirrel.")
await ctx.send("Such a hothead.")
await ctx.send("I guess he could have")
await ctx.send("just gotten out of the way.")
await ctx.send("I love this incorporating")
await ctx.send("an amusement park into our day.")
await ctx.send("That's why we don't need vacations.")
await ctx.send("Boy, quite a bit of pomp...")
await ctx.send("under the circumstances.")
await ctx.send("- Well, Adam, today we are men.")
await ctx.send("- We are!")
await ctx.send("- Bee-men.")
await ctx.send("- Amen!")
await ctx.send("Hallelujah!")
await ctx.send("Students, faculty, distinguished bees,")
await ctx.send("please welcome Dean Buzzwell.")
await ctx.send("Welcome, New Hive Oity")
await ctx.send("graduating class of...")
await ctx.send("...9:15.")
await ctx.send("That concludes our ceremonies.")
await ctx.send("And begins your career")
await ctx.send("at Honex Industries!")
await ctx.send("Will we pick ourjob today?")
await ctx.send("I heard it's just orientation.")
await ctx.send("Heads up! Here we go.")
await ctx.send("Keep your hands and antennas")
await ctx.send("inside the tram at all times.")
await ctx.send("- Wonder what it'll be like?")
await ctx.send("- A little scary.")
await ctx.send("Welcome to Honex,")
await ctx.send("a division of Honesco")
await ctx.send("and a part of the Hexagon Group.")
await ctx.send("This is it!")
await ctx.send("Wow.")
await ctx.send("Wow.")
await ctx.send("We know that you, as a bee,")
await ctx.send("have worked your whole life")
await ctx.send("to get to the point where you")
await ctx.send("can work for your whole life.")
await ctx.send("Honey begins when our valiant Pollen")
await ctx.send("Jocks bring the nectar to the hive.")
await ctx.send("Our top-secret formula")
await ctx.send("is automatically color-corrected,")
await ctx.send("scent-adjusted and bubble-contoured")
await ctx.send("into this soothing sweet syrup")
await ctx.send("with its distinctive")
await ctx.send("golden glow you know as...")
await ctx.send("Honey!")
await ctx.send("- That girl was hot.")
await ctx.send("- She's my cousin!")
await ctx.send("- She is?")
await ctx.send("- Yes, we're all cousins.")
await ctx.send("- Right. You're right.")
await ctx.send("- At Honex, we constantly strive")
await ctx.send("to improve every aspect")
await ctx.send("of bee existence.")
await ctx.send("These bees are stress-testing")
await ctx.send("a new helmet technology.")
await ctx.send("- What do you think he makes?")
await ctx.send("- Not enough.")
await ctx.send("Here we have our latest advancement,")
await ctx.send("the Krelman.")
await ctx.send("- What does that do?")
await ctx.send("- Oatches that little strand of honey")
await ctx.send("that hangs after you pour it.")
await ctx.send("Saves us millions.")
await ctx.send("Oan anyone work on the Krelman?")
await ctx.send("Of course. Most bee jobs are")
await ctx.send("small ones. But bees know")
await ctx.send("that every small job,")
await ctx.send("if it's done well, means a lot.")
await ctx.send("But choose carefully")
await ctx.send("because you'll stay in the job")
await ctx.send("you pick for the rest of your life.")
await ctx.send("The same job the rest of your life?")
await ctx.send("I didn't know that.")
await ctx.send("What's the difference?")
await ctx.send("You'll be happy to know that bees,")
await ctx.send("as a species, haven't had one day off")
await ctx.send("in 27 million years.")
await ctx.send("So you'll just work us to death?")
await ctx.send("We'll sure try.")
await ctx.send("Wow! That blew my mind!")
await ctx.send("What's the difference?")
await ctx.send("How can you say that?")
await ctx.send("One job forever?")
await ctx.send("That's an insane choice to have to make.")
await ctx.send("I'm relieved. Now we only have")
await ctx.send("to make one decision in life.")
await ctx.send("But, Adam, how could they")
await ctx.send("never have told us that?")
await ctx.send("Why would you question anything?")
await ctx.send("We're bees.")
await ctx.send("We're the most perfectly")
await ctx.send("functioning society on Earth.")
await ctx.send("You ever think maybe things")
await ctx.send("work a little too well here?")
await ctx.send("Like what? Give me one example.")
await ctx.send("I don't know. But you know")
await ctx.send("what I'm talking about.")
await ctx.send("Please clear the gate.")
await ctx.send("Royal Nectar Force on approach.")
await ctx.send("Wait a second. Oheck it out.")
await ctx.send("- Hey, those are Pollen Jocks!")
await ctx.send("- Wow.")
await ctx.send("I've never seen them this close.")
await ctx.send("They know what it's like")
await ctx.send("outside the hive.")
await ctx.send("Yeah, but some don't come back.")
await ctx.send("- Hey, Jocks!")
await ctx.send("- Hi, Jocks!")
await ctx.send("You guys did great!")
await ctx.send("You're monsters!")
await ctx.send("You're sky freaks! I love it! I love it!")
await ctx.send("- I wonder where they were.")
await ctx.send("- I don't know.")
await ctx.send("Their day's not planned.")
await ctx.send("Outside the hive, flying who knows")
await ctx.send("where, doing who knows what.")
await ctx.send("You can'tjust decide to be a Pollen")
await ctx.send("Jock. You have to be bred for that.")
await ctx.send("Right.")
await ctx.send("Look. That's more pollen")
await ctx.send("than you and I will see in a lifetime.")
await ctx.send("It's just a status symbol.")
await ctx.send("Bees make too much of it.")
await ctx.send("Perhaps. Unless you're wearing it")
await ctx.send("and the ladies see you wearing it.")
await ctx.send("Those ladies?")
await ctx.send("Aren't they our cousins too?")
await ctx.send("Distant. Distant.")
await ctx.send("Look at these two.")
await ctx.send("- Oouple of Hive Harrys.")
await ctx.send("- Let's have fun with them.")
await ctx.send("It must be dangerous")
await ctx.send("being a Pollen Jock.")
await ctx.send("Yeah. Once a bear pinned me")
await ctx.send("against a mushroom!")
await ctx.send("He had a paw on my throat,")
await ctx.send("and with the other, he was slapping me!")
await ctx.send("- Oh, my!")
await ctx.send("- I never thought I'd knock him out.")
await ctx.send("What were you doing during this?")
await ctx.send("Trying to alert the authorities.")
await ctx.send("I can autograph that.")
await ctx.send("A little gusty out there today,")
await ctx.send("wasn't it, comrades?")
await ctx.send("Yeah. Gusty.")
await ctx.send("We're hitting a sunflower patch")
await ctx.send("six miles from here tomorrow.")
await ctx.send("- Six miles, huh?")
await ctx.send("- Barry!")
await ctx.send("A puddle jump for us,")
await ctx.send("but maybe you're not up for it.")
await ctx.send("- Maybe I am.")
await ctx.send("- You are not!")
await ctx.send("We're going 9 at J-Gate.")
await ctx.send("What do you think, buzzy-boy?")
await ctx.send("Are you bee enough?")
await ctx.send("I might be. It all depends")
await ctx.send("on what 9 means.")
await ctx.send("Hey, Honex!")
await ctx.send("Dad, you surprised me.")
await ctx.send("You decide what you're interested in?")
await ctx.send("- Well, there's a lot of choices.")
await ctx.send("- But you only get one.")
await ctx.send("Do you ever get bored")
await ctx.send("doing the same job every day?")
await ctx.send("Son, let me tell you about stirring.")
await ctx.send("You grab that stick, and you just")
await ctx.send("move it around, and you stir it around.")
await ctx.send("You get yourself into a rhythm.")
await ctx.send("It's a beautiful thing.")
await ctx.send("You know, Dad,")
await ctx.send("the more I think about it,")
await ctx.send("maybe the honey field")
await ctx.send("just isn't right for me.")
await ctx.send("You were thinking of what,")
await ctx.send("making balloon animals?")
await ctx.send("That's a bad job")