-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathfeatures.txt
3751 lines (3751 loc) · 135 KB
/
features.txt
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
help | Shows the main menu
fun [Page/All] | Fun commands
text [Page/All] | Text commands
info [Page/All] | Information commands
user [Page/All] | User and Selfbot commands
image [Page/All] | Image commands
tool [Page/All] | Tool commands
server [Page/All] | Server commands
administration | Administration commands
nsfw | NSFW image commands
abuse | Abusive commands
raid | Raid commands
usersettings | Discord User settings commands
botsettings | Selfbot settings commands
customization | Selfbot customization commands
searchcmd <Content> | Searches for a command
repeatcmd | Repeats last command
usage <Command> | Shows the usage of a command
description <Command> | Shows the description of a command
shelp | Shows all commands in the console
favoritecmds | Favorite commands
spam <Amount> <Timeout in Seconds> <Message> | Spams a specific message specific amount of times
spamtts <Amount> <Timeout in Seconds> <Message> | Spams a specific tts message specific amount of times
filespam | Spams the text from Spam.txt line by line
ascii <Text> | Shows text in ASCII format
poll <Message> | Starts a poll with a specific message
suggestion <Message> | Sends a suggestion with a specific message
reverse <Text> | Reverses Text
fliptext <Text> | Flips the text upside down
zalgo <Text> | Adds Zalgo characters to a Text
1337 <Text> | Turns Text to a 1337/leet message
uwu <Text> | UwUfies a message
mock <Text> | Spongemocks text
base64 <Encode/Decode> <Text> | Encode/Decode text to/from Base64
notfunny | Tells someone how unfunny they are
noob | Tells someone what noob they are
beescript | Sends the whole Bee Movie Script line by line
hastebin <Text> | Uploads text to hastebin.com
loremipsum <Words> | Generates a Lorem Ipsum text with a specified amount of words
embed <Title> <Text> | Sends and Embed with a custom title and text
react <Text> [Message ID] [Channel] [Combine(true/false)] | Reacts with the Text translated in Emotes
uwumode | Toggles UwU Mode
mockmode | Toggles Mock Mode
empty | Sends an empty message
morse <Text> | Convert text to morse code
unmorse <Text> | Convert morse code to text
emojify <Text> | Converts text into emojis
tinyurl <URL> | Converts a URL to a TinyURL
clap <Sentence> | Puts a clap emoji between each word
cap <Sentence> | Puts a cap emoji between each word
semoji <Emoji> <Sentence> | Puts a custom emoji between each word
markdownblocks | Shows available Markdown code block commands
animate <Text> | Animates text
count <From> <To> | Counts from one number to another
strike <Text> | Puts a line through the text
spoil <Text> | Puts a spoiler on the text
lspoil <Text> | Puts a spoiler on each letter of the text
bold <Text> | Makes text bold
italic <Text> | Makes text italic
underline <Text> | Makes text underlined
blockquote <Text> | Makes text quoted
upper <Text> | Sends text uppercase
lower <Text> | Sends text lowercase
randomguildemoji | Sends a random emoji from the guild (only guilds)
countdown <From> <To> | Counts from one number to another (down)
texttobinary <Text> | Converts text to binary
binarytotext <Binary> | Converts binary to text
toenchantmenttable <Text> | Translates english to enchantment table language
cembed <"Title"> ["Description"] ["Footer"] ["Image URL"] | Custom embed
clear | Clear the chat without permissions
shrug | Sends a shrug text emoticon
tableflip | Sends a tableflip text emoticon
unflip | Sends a table unflip text emoticon
emoji <Emoji> | Send emoji in bigger format
vape <Text> | Vaporwave-style message
space <Text> | Spaced message
sleeklaunch <IP> <Port> <Duration> <Method> <PPS> | Starts a Sleek.to attack
sleekstop <Test ID> | Stops a Sleek.to attack
sleekstatus <Test ID> | Shows information about a Sleek.to attack
sleekmethods | Shows available Sleek.to attack methods
encryption | Shows encryption commands
invisibleping <User> <Message> | Sends a message with an invisible ping
hiddeninvite <URL> <Text> | Hide a discord invite behind your text
hiddenlink <URL> <Spoofed URL> | Spoof an URL
hiddeneveryone <Text> | Hide a @everyone ping behind your text
fakenitro <Link> | Generates fake Nitro URL
fakeskeet <Link> | Generates fake Skeet Invite URL
fakelink <Fake Link> <Original Link> | Sends a fake link
networking | Networking commands
dox <Token> | Shows information about someones Discord Account
tokenfucker <Token> | Changes all settings and let's the Account flicker black and white
nuketoken <Token> | Purges all guilds and blocks all friends of a Discord Account
bantoken <Token> | Bans someones Discord Account
blackscreenurl | Sends a URL which let's people who use Windows get a black screen
firstmessage | Jump to first message
dumpchat <Amount> | Saves the channel messages into a file and uploads it
gping <@User> | Ghostpings an user
timer <Seconds> <Name> | Set a timer
savebackup <Name> | Saves a full server backup
loadbackup <Name> | Loads a full server backup
deletebackup <Name> | Deletes a server backup
listbackup | Shows all server backups
impersonate <User> <Message> | Impersonates a user using a webhook
delwebhook <Webhook URL> | Deletes a Webhook
infograbber <Discord Webhook URL> | Creates a info grabber exe file which grabs Discord tokens and computer information
calculator | Opens calculator [Windows only]
winexplorer | Opens Windows Explorer [Windows only]
folder | Open React folder [Windows only]
webopen <URL> | Opens an URL in your web browser
leavegroups | Leaves all Groups
fakedata | Generates a fake identity
bottoken | Generates a random Discord bottoken
ebayviews <Amount> <Link> | Adds eBay views
tempmail | Creates a Temporary Mail
dm <User> <Text> | Sends a direct message to an user (Bypasses if you have blocked the user)
friendexport | Backups __some__ of your friends
purge <Amount> | Purges a specified amount of messages
spurge <Amount> | Purges a specified amount of your own messages
bulkreact <Amount> <Emoji> | Reacts to an amount of messages above
bulkpin <Amount> | Pins the amount of messages above
miraicrash <IP Address> <Port> | Crashes a Mirai Botnet
massghostping <User> | Ghostpings a person in every channel
globalmassghostping <User> | Ghostpings a person in every channel in every mutual server
giveaway <Seconds> <Winners> <Prize> | Starts a giveaway
proxyscrape | Scrapes proxies from Proxyscrape
sleek | Shows available Sleek.to commands
todo <Task> | Adds a task to the TODO list
tododel <Task> | Removes a task from the TODO list
todolist | Shows the TODO list
todoclear | Clears the TODO list
yt2mp4 <YouTube URL> | Download a YouTube Video
eval <Code> | Evaluate Python code
remoteexecute <Channel> <Command> [Arguments] | Execute a command in another channel
boobs | Shows a boobs image
anal | Shows a anal image
porngif | Shows a porn gif image
hentai | Shows a hentai image
hentaiass | Shows a hentai ass image
hentaianal | Shows a hentai anal image
hentaiboobs | Shows a hentai boobs image
hentaitentacle | Shows a hentai tentacle image
hentaipussy | Sends a random hentai pussy image
hentaikuni | Sends a random hentai kuni image
hentaitits | Sends a random hentai tits image
hentaiketa | Sends a random hentai keta image
hentaikemonomimi | Sends a random hentai kemonomimi image
hentaigasm | Sends a random hentai gasm image
blowjob | Shows a blowjob image
feet | Shows a feet image
yaoi | Shows a yaoi image
ass | Shows an ass image
cum | Shows a cum image
trap | Shows a trap image
futanari | Shows a futanari image
spank | Shows a spank image
rule34 | Sends a random rule34.xxx image
reactencrypt <Message> | Encrypt a message for React Selfbot users
reactdecrypt <Message> | Decrypt a message from a React Selfbot user
whirlpool <Text> | Encrypts text to whirlpool
sha512 <Text> | Encrypts text to sha512
sha256 <Text> | Encrypts text to sha256
sha1 <Text> | Encrypts text to sha1
md5 <Text> | Encrypts text to md5
rot13 <Text> | Encrypts text to ROT-13
unrot13 <Text> | Decrypts text from ROT-13
privatebin <Expiration(5min/10min/1hour/1day)> <Burn after reading(true/false)> <Text> | Uploads text to privatebin.info
dmall <Text> | DM's all users on the server with the specified message
banall | Bans all users on the server except yourself
kickall | Kicks all users on the server except yourself
nickall <Nick> | Nicks all members
deleteroles | Deletes all roles on the server
deletechannels | Deletes all channels on the server
purgeserver | Deletes all channels and roles
masschannels | Creates 250 random named channels
massroles | Creates 250 random named roles
massunban | Unbans all users on the server
cloneserver [Server ID] | Creates a server with the same channels and roles
destroyserver [Server ID] | Deletes all channels, roles and kicks/bans all members and creates random channels and roles
dumpemojis [Server ID] | Saves all Emojis into an folder
rainbowrole <Role> | Fades the role color
unbanall | Unban all users
renameallroles <Name> | Rename all roles
renameallchannels <Name> | Rename all channels
loopservername <Text> | Loop server name
stoploopservername | Stop looping server name
nukechannel <Channel> | Clones a channel and deletes the original
bannedusers | Shows banned users
channels [Server ID] | Show server channels (including hidden ones)
delemojis | Deletes all server emojis
renameserver <Name> | Renames the server
massping | Pings as many people as possible
massgping | Mass ghostpings
cloneservertoserver <ToServerID> <FromServerID> | Clones a server to an existing one
makerole <Name> | Creates a role
addrole <Member> <Role> | Gives a role to a member
removerole <Member> <Role> | Removes a role from a member
roles [Server ID] | Shows roles
crypto | Shows all crypto commands
avatar [User] | Shows user's avatar
serverlogo [Server ID] | Shows server's logo
grouplogo | Shows groupchats's logo
roleinfo <Role> | Shows role information
serverinfo [Server ID] | Shows server information
userinfo [User] | Shows user information
covid [Country] | Shows live COVID-19 stats
pcspecs | Sends your PC specifications
urbandict <Word> | Shows the urban definition of a word
calc <Equation> | Calculates the mathematical answer of an equation
namehistory <Minecraft Username> | Shows the name history of a Minecraft account
pokedex <Pokemon> | Shows Pokedex information about a Pokemon
ping | Shows your latency
fnstats <Fortnite Name> | Shows the Fortnite stats of an user
snowflakeinfo <Snowflake ID> | Discord Snowflake information
dogfact | Random dog fact
catfact | Random cat fact
rockstarid <SocialClub Name> | Resolves Social Club's Rockstar ID of a user
weather <City> | Shows the current weather in the specified city
discordstatus | Shows current Discord Status
uptime | Shows the selfbot uptime
morsetable | Shows the morse code alphabet
define <Word> | Shows the definition of a word
howgay <User> | Shows how gay a user is
howcorona <User> | Shows how corona positive a user is
howfurry <User> | Shows how forry a user is
lovecalc <User 1> <User 2> | Love Calculator between two users
iq <User> | Shows User's IQ
deathdate <User> | Shows the Death Date of a user
lyrics <Title> | Shows the lyrics of a song
translate <FromLang> <ToLang> <Text> | Translates text to a specific language
mcskin <Minecraft Username> | Shows the Minecraft skin of the user
mcuuid <Minecraft Username> | Shows the Minecraft UUID of the user
color <HEX Code> | Shows information about the color
numberfact <Number> | Shows a fact about a number
motd | Displays React Selfbot MOTD
howcap <User> | Shows if a user is capping
mcserver <Address> | Shows information about a Minecraft Server
csgostats <Profile ID/Name> | Shows CS:GO Statistics
rlstats <Profile ID/Name> | Shows Rocket League Statistics
apexstats <Origin Name> | Shows Apex Legends Statistics
valorantstats <Riot Name With Tag> | Shows Valorant Statistics
rockstargamesstatus | Shows Rockstar Games Status
unixtime <Timestamp> | Converts an UNIX timestamp to time (UTC)
emojiinfo <Emoji> | Emoji information
watchuser <User> | Notifies you when an user changes his activity, online status, avatar or username
unwatchuser <User> | Stops watching an user
watchlist | Shows users in the watcher
unwatchall | Stops watching all users
changelog | Shows the latest changelog
lookupuser <User ID> | Lookups an user by his ID
listscripts | Shows your installed scripts
amazonsearch <Product> | Searches Amazon products
youtubesearch <Search> | Searches YouTube videos
googlesearch <Search> | Searches Google
pornhubsearch <Search> | Searches PornHub videos
steamsearch <Search> | Searches Steam games
githubsearch <Search> | Searches GitHub repositories
stackoverflowsearch <Search> | Searches StackOverflow answers
wikisearch <Search> | Searches Wikipedia articles
pornsearch <Search> | Searches PornHub, YouPorn, RedTube, etc. Videos
sherlocksearch <Username> | Searches for social media accounts
rpc | Toggles Rich Presence
rpccustommode | Toggles custom mode
rpcappid <Application ID> | Sets the RPC Application ID
rpcdetails <Details> | Sets the RPC details
rpcstate <State> | Sets the RPC state
rpclargeimage <Image Name> | Sets the RPC large image
rpclargeimagetext <Text> | Sets the RPC large image text
rpcsmallimage <Image Name> | Sets the RPC small image
rpcsmallimagetext <Text> | Sets the RPC small image text
rpctime | Toggle RPC Time
rpcbtnonelabel <Label> | Sets the button one label
rpcbtnoneurl <URL> | Sets the button one URL
rpcbtntwolabel <Label> | Sets the button two label
rpcbtntwourl <URL> | Sets the button two URL
rpcupdate | Restarts the bot to apply some rich presence features
coinflip | Flips a Coin
cocksize <Users> | Do a Cock comparison
8ball <Question> | Ask the Magic 8 ball
dadjoke | Tells a dad joke
joke | Tells a joke
chucknorrisjoke | Tells a Chuck Norris joke
wyr | Posts a Would you Rather embed
topic | Changes the topic
trumpquote | Shows a random Donald Trump quote
ccgen [Mastercard/Visa/Amex/Discover] | Generates a fake credit card
911 | Sends a short 9/11 animation
choose <Options> | Takes a random choice between options
nitro <Amount> | Generates Nitro and sends Codes every 3 seconds
search | Shows search commands
lmgtfy <Search> | Sends a Let Me Google That For You Link
slots | Gamble with a slot machine
tts <Language(en/de/fr/es/etc)> <Text> | Generates a Text To Speech mp3 and sends it
passwordgen | Generates a secure password
rps <Rock/Paper/Scissors> | Play a game of Rock, Paper, Scissors against an AI
animatenick <Text> | Animated nickname
stopanimatenick | Stop annimated nickname
hypesquadcycle | Cycle HypeSquad houses
dice [Sides] | Rolls a dice with the specified amount of sides
creeper | Sends an "infinite" creeper "gif"
advice | Gives a random advice
fml | Sends a random FML
dankfarm | Starts farming coins for Dank Memer
snipe | Shows the last deleted message
randomusername | Generates a random username
kanyequote | Generates a random Kanye West quote
bored | Generates a random activity
randomnumber [Minimum] [Maximum] | Generates a random number
netflixroulette | Generates a random netflix show
bubblewrap | Bubble Wrap pop
minesweeper | Minesweeper
randomemoji | Sends a random emoji
spoofnitro | Sends a Nitro gift link which doesn't embed but looks real
uselessfact | Shows a random useless fact
insult <User> | Insults an user
nwordcounter | Shows how many times the n-word has been said
truthordare [Truth/Dare] | Random Truth or Dare
spamtillyouredead | Custom Dance till you're dead lyrics
playing <Status> | Sets your playing status
streaming <Status> | Sets your streaming status
listening <Status> | Sets your listening status
watching <Status> | Sets your watching status
removestatus | Removes your status
online | Sets your status to online
idle | Sets your status to idle
dnd | Sets your status to do not disturb
invisible | Sets your status to invisible
statuscycleadd <Word> | Adds a word to the status cycle
statuscycle | Toggles status cycle
statuscycleclear | Clears the status cycle words
onlinestatuscycle | Toggles online status cycle
setupwhooks | Creates a category, channels, webhooks and saves them to the config
webhook <Name> | Creates a webhook
wall <URL> | Sets the webhook URL for everything
wnitro <URL> | Set Nitro webhook URL
wgiveaways <URL> | Set giveaways webhook URL
wsbdetection <URL> | Set Selfbot Detection webhook URL
wgpings <URL> | Set Ghostpings webhook URL
wcmds <URL> | Set Command usage webhook URL
wdmdels <URL> | Set DM deletions webhook URL
wprivnotes <URL> | Set Privnotes webhook URL
wwatcher <URL> | Set Watcher webhook URL
wserverban <URL> | Set Server Bans webhook URL
wtickets <URL> | Set Tickets detection webhook URL
wrelationships <URL> | Set Relationship updates webhook URL
wroleupdates <URL> | Set Role updates webhook URL
wnickname <URL> | Set Nickname updates webhook URL
ndmdels | Toggles DM deletion Windows notifications
nnitroredeem | Toggles Nitro redeem Windows notifications
nghostping | Toggles ghostping Windows notifications
nprivnote | Toggles Privnote Windows notifications
ngiveawaywin | Toggles giveaway win Windows notifications
ngiveawayjoin | Toggles giveaway join Windows notifications
nsbdetection | Toggles selfbot detection Windows notifications
ntickets | Toggles ticket detection Windows notifications
nrelationships | Toggles relationship detection Windows notifications
nroleupdates | Toggles role updates detection Windows notifications
nnickname | Toggles Nickname updates detection Windows notifications
snsnipe | Toggles successfull Nitro snipe sound notifications
sgwin | Toggles giveaway win sound notifications
sprivnotes | Toggles Privnotes snipe sound notifications
ssbdetection | Toggles selfbot detection sound notifications
sdmdels | Toggles DM deletions sound notifications
sban | Toggles server ban sound notifications
sghostping | Toggles Ghostping sound notifications
srelationships | Toggles Relationship updates sound notifications
stickets | Toggles Tickets detection sound notifications
sroleupdates | Toggles Role updates detection sound notifications
snickname | Toggles Nickname updates detection sound notifications
status | Shows status commands
darkmode | Changes your Discord theme to dark
lightmode | Changes your Discord theme to light
messagedisplay <Compact/Cozy> | Changes your message display
developer <Enable/Disable> | Enables/Disables Discord Developer mode
typing <Seconds> | Shows typing... message for the specified amount of seconds
invisiblenickname | Changes your nickname to invisible letters
junknickname | Changes your nickname to junk letters
hypesquad <Bravery/Balance/Brilliance> | Changes your HypeSquad House
addfriend <User> | Adds someone as a friend
unfriend <User> | Removes a friend
block <User> | Blocks a user
unblock <User> | Unblocks a user
setusername <Name> | Sets your Discord username
setpfp <URL> | Sets your Discord profile picture
unverify | Unverify your email
changeprefix <New Prefix> | Changes selfbot prefix
restartbot | Restarts the Selfbot
stopbot | Stops the bot
updatebot | Updates the Selfbot
showsettings | Sends your Selfbot settings
deletecommands | Toggle deleting command invoke message
disablecommand <Command> | Disables a selfbot command
enablecommand <Command> | Enables a selfbot command
disabledcommands | List of disabled commands
nitrosniper | Toggles Nitro sniping
selfbotdetection | Toggles Selfbot user detection
privnotesniper | Toggles Privnote sniping
ghostpingdetection | Toggles ghostping detection
giveawaysniper | Toggles Giveaway sniping
giveawaytimeout <Seconds> | Sets the Giveaway sniper timeout
giveawayblacklistadd <Word> | Add a word to the giveaway word blacklist
giveawayblacklistdel <Word> | Delete a word from the giveaway word blacklist
giveawayblacklist | Shows the giveaway blacklist
ignorenitro <Channel> | Ignores Nitro codes form a channel
stopignorenitro <Channel> | Stop ignoring Nitro codes form a channel
ticketdetection | Toggles ticket detection
relationshipdetection | Toggles relationship update detection
afkmsg <New Message> | Change your AFK auto-reply message
deletetimeout <Infinite/(Seconds)> | Sets the time after that embeds should be deleted
streamingurl <URL> | Sets the URL for the streaming command
whookurls | Shows Webhook URL commands
snotifs | Shows sound notifications commands
toastnotifs | Shows Windows Toast notifications commands
themes | Shows the available themes
theme <Theme Name> | Selects a theme
cloudthemes | Shows the available cloudthemes
cloudthemeinstall <Theme Name> | Installs a cloud theme
newtheme <Name> | Creates a new theme and switches to it
deltheme | Deletes the current theme
themeshuffle | Toggle theme shuffle
exporttheme | Sends the current theme in the chat
languages | Shows the available languages
language <Language ID> | Selects a language
switchmode | Switch to Codeblock/Embed mode
sbtitle <New Title> | Sets the selfbot title
globalemoji <New Emoji> | Sets the global emoji
embedcolor <Hexcode> | Change the embed color
embedthumbnail <URL> | Change the embed thumbnail icon
embedauthorname <Name> | Change the embed author name
embedauthoricon <URL> | Change the embed author icon
embedauthorurl <URL> | Change the embed author URL
embedtitleurl <URL> | Change the embed title URL
embedfootericon <URL> | Change the embed footer icon
embedfooter <Text> | Change the embed footer text
footertimestamp | Enables/Disables the footer timestamp
customcmdadd <Command Name Without Prefix> <Content> | Creates a custom command
customcmddel <Command Name With Prefix> | Deletes a custom command
customcmdlist | Shows available custom commands
remotecommandsuseradd <User> | Allows other user to use selfbot commands
remotecommandsuserdel <User> | Disallows other user to use selfbot commands
cmdhistory | Command history
clearlog | Clears console log
copyuser <User> | Repeats everything the user types
stopcopy <User> | Stops repeating the user
stopcopyall | Stops repeating the all users
copymock <User> | Repeats everything the user types in a mocking way
stopcopymock <User> | Stops copymocking the user
deletesend <User> | Sends every message a user deletes
stopdeletesend <User> | Stop sending every message a user deletes
ignoreuser <User> | Ignores messages from an user
stopignoreuser <User> | Stops ignoring messages from an user
stopignoreallusers | Stops ignoring messages from all users
ignorepings | Toggles ignoring @here & @everyone pings
ignoreallpings | Toggles ignoring all pings
clearpings <Server ID> | Clears all pings of an server
afk | Toggles AFK Mode
afklog | Show who sent you while being AFK
stats | Shows your Selfbot Statistics
userstats | Shows your Discord statistics
mutualguilds <User> | Shows mutual guilds with user
mutualfriends <User> | Shows mutual friends with user
guilds | Shows a list of your guilds
blocks | Shows a list of your blocked users
stealname <User> | Steals someones Discord username
stealpfp <User> | Steals someones Discord profile picture
stealnameandpfp <User> | Steals someones Discord name and profile picture
blockdms | Toggle blocking incoming DMs (useful when getting massdmed)
blockincomingfriends | Toggle blocking incoming friend requests (useful when getting massfriendrequested)
noleave <User> | User can not leave Group DM (requires friendship with the user)
allowleave <User> | Allow user to leave the Group DM
richpresence | Shows Rich Presence commands
leaveallservers | Leaves all guilds
deleteallfriends | Blocks all friends
deletealldms | Deletes all Direct Messages
cloudscripts | Shows the available cloudscripts
cloudscriptinstall <Script Name> | Installs a cloud script
addfavorite <Command> | Add a command to the favorites
delfavorite <Command> | Delete a command from the favorites
fox | Sends a random fox image
duck | Sends a random duck image
dog | Sends a random dog image
cat | Sends a random cat image
panda | Sends a random panda image
redpanda | Sends a random red panda image
koala | Sends a random koala image
bird | Sends a random bird image
pikachu | Sends a random pikachu image
hug | Sends a random hug gif
kiss | Sends a random kiss gif
wink | Sends a random wink image
waifu | Sends a random waifu image
neko | Sends a random neko image
wallpaper | Sends a random wallpaper image
food | Sends a random food image
sadcat | Sends a random sad cat image
tpdne | Sends a random this person does not exist image
yesorno | Sends a yes or no image
belikebill | Sends a Be Like Bill image
wasted <User> | Adds wasted overlay to avatar
triggered <User> | Adds triggered overlay to avatar
trumptweet <Tweet> | Generates a Trump Tweet with a custom message
tweet <Username> <Tweet> | Tweets a message with a specific username
achievement <Text> | Generates an Minecraft Achievement Get imagege
phcomment <User> <Text> | Generates a PornHub comment with a custom message
qrcode <Text> | Generates a QR Code image with the specified text
approved <Member> | Generates a approved image with the member's profile picture
rejected <Member> | Generates a rejected image with the member's profile picture
batslap <Member> | Generates a batslap image with the member's profile picture
beautiful <Member> | Generates a beautiful image with the member's profile picture
brazzers <Member> | Generates a brazzers image with the member's profile picture
burn <Member> | Generates a burn image with the member's profile picture
crush <Member> | Generates a crush image with the member's profile picture
dictator <Member> | Generates a dictator image with the member's profile picture
discordhouse <Bravery, Brilliance, Balance> <Member> | Generates a discordhouse image with the member's profile picture
gay <Member> | Generates a gay image with the member's profile picture
magik <Member> | Generates a magik image with the member's profile picture
missionpassed <Member> | Generates a missionpassed image with the member's profile picture
rip <Member> | Generates a rip image with the member's profile picture
scary <Member> | Generates a scary image with the member's profile picture
sniper <Member> | Generates a sniper image with the member's profile picture
tobecontinued <Member> | Generates a tobecontinued image with the member's profile picture
subzero <Member> | Generates a subzero image with the member's profile picture
vs <Member> | Generates a vs image with the member's profile picture
wanted <Member> | Generates a wanted image with the member's profile picture
whowouldwin <Member> | Generates a whowouldwin image with the member's profile picture
changemymind <Text> | Generates Change my Mind image
clyde <Text> | Generates a ClydeBOT image
supreme <Text> | Generates a Supreme Logo image
scroll <Text> | Generates a Scroll of Truth image
captcha <Text> | Generates a reCAPTCHA image
phlogo <Text 1> <Text 2> | Generates a Pornhub Logo image
facts <Text> | Generates a facts image
deletetrash <User> | Generates a delete trash image
smart <User> | Generates a smart image
shoot <User> | Generates a shoot image
punch <User> | Generates a punch image
bear | Generates a bear image
car | Generates a car image
shiba | Generates a shiba image
goose | Sends a random goose image
slap | Sends a random slap image
pat | Sends a random pat image
poke | Sends a random poke image
tickle | Sends a random tickle image
cuddle | Sends a random cuddle image
smug | Sends a random smug image
baka | Sends a random baka image
kannagen <Text> | Generates a kanna image
httpcat <HTTP Code> | Generates a cat image with an HTTP code
trash <User> | Generates a trash image
crap <User> | Generates a crap image
simpcard <User> | Generates a simpcard image
gif <Text> | Searches for a gif
eject <Impostor(true/false)> <Crewmate(red,lime,blue)> <User> | Eject an user
carreverse <Text> | Car reverse meme
water <Text> | Water meme
emergencymeeting <Text> | Emergency meeting meme
iamspeed <User> | I am speed meme
drip <User> | Drip goku meme
firsttime <User> | First time meme
heaven <User> | Heaven meme
dockofshame <User> | Dock of Shame image
icanmilkyou <User 1> <User 2> | I can milk you meme
stonks <User> | Stonks meme
notstonks <User> | Not stonks meme
tableflipimg <User> | Table flip meme
batmanslap <User(Batman)> <User(Robin)> <"Text 1"> <"Text 2"> | Batman slap meme
distractedbf <User(Boyfriend)> <User(Woman)> <User(Girlfriend)> | Distracted boyfriend meme
npc <"Text 1"> <"Text 2"> | NPC meme
wide <User> | Wide avatar
womanyellingatcat <User(Woman)> <User(Cat)> | Woman yelling at cat meme
drake <"Text 1"> <"Text 2"> | Drake meme
fry <"Text 1"> <"Text 2"> | Fry meme
bihw <"Text 1"> <"Text 2"> | But it's honest work meme
cheems <"Text 1"> <"Text 2"> | Cheems images
fwp <"Text 1"> <"Text 2"> | First World Problems meme
mb <"Text 1"> <"Text 2"> | Member Berries meme
mordor <"Text 1"> <"Text 2"> | Mordor meme
morpheus <"Text 1"> <"Text 2"> | Matrix Morpheus meme
pigeon <"Text 1"> <"Text 2"> | Is this a pigeon meme
spiderman <"Text 1"> <"Text 2"> | Spiderman pointing at Spiderman meme
spongemock <"Text 1"> <"Text 2"> | Mocking Spongebob meme
ds <"Text 1"> <"Text 2"> | Daily Struggle meme
ps4 <User> | PS4 Cover
thanos <User> | Thanos effect
moustache <User> | Moustache over avatar
glitch <User> | Glitch effect
dungeon <User> | Dungeon meme
challenger <User> | Challenger approaching
3000years <User> | 3000 years meme
revavatar <User> | Reverse Avatar Search
revimage <URL> | Reverse Image Search
aag <"Text 1"> <"Text 2"> | Ancient Aliens Guy
ackbar <"Text 1"> <"Text 2"> | It's A Trap!
afraid <"Text 1"> <"Text 2"> | Afraid to Ask Andy
agnes <"Text 1"> <"Text 2"> | Agnes Harkness Winking
aintgottime <"Text 1"> <"Text 2"> | Sweet Brown / Ain't Nobody Got Time For That
ams <"Text 1"> <"Text 2"> | Awkward Moment Seal
ants <"Text 1"> <"Text 2"> | Do You Want Ants?
apcr <"Text 1"> <"Text 2"> | Almost Politically Correct Redneck
atis <"Text 1"> <"Text 2"> | And Then I Said
away <"Text 1"> <"Text 2"> | Life... Finds a Way
awesome <"Text 1"> <"Text 2"> | Socially Awesome Penguin
awesomeawkward <"Text 1"> <"Text 2"> | Socially Awesome Awkward Penguin
awkward <"Text 1"> <"Text 2"> | Socially Awkward Penguin
awkwardawesome <"Text 1"> <"Text 2"> | Socially Awkward Awesome Penguin
bad <"Text 1"> <"Text 2"> | You Should Feel Bad
badchoice <"Text 1"> <"Text 2"> | Milk Was a Bad Choice
bd <"Text 1"> <"Text 2"> | Butthurt Dweller
bender <"Text 1"> <"Text 2"> | I'm Going to Build My Own Theme Park
bihw <"Text 1"> <"Text 2"> | But It's Honest Work
biw <"Text 1"> <"Text 2"> | Baby Insanity Wolf
blb <"Text 1"> <"Text 2"> | Bad Luck Brian
boat <"Text 1"> <"Text 2"> | I Should Buy a Boat Cat
both <"Text 1"> <"Text 2"> | Why Not Both?
bs <"Text 1"> <"Text 2"> | This is Bull, Shark
buzz <"Text 1"> <"Text 2"> | X, X Everywhere
captain <"Text 1"> <"Text 2"> | I am the Captain Now
captainamerica <"Text 1"> <"Text 2"> | Captain America Elevator Fight Dad Joke
cb <"Text 1"> <"Text 2"> | Confession Bear
cbg <"Text 1"> <"Text 2"> | Comic Book Guy
center <"Text 1"> <"Text 2"> | What is this, a Center for Ants?!
ch <"Text 1"> <"Text 2"> | Captain Hindsight
cheems <"Text 1"> <"Text 2"> | Cheems
chosen <"Text 1"> <"Text 2"> | You Were the Chosen One!
cmm <"Text 1"> <"Text 2"> | Change My Mind
crazypills <"Text 1"> <"Text 2"> | I Feel Like I'm Taking Crazy Pills
cryingfloor <"Text 1"> <"Text 2"> | Crying on Floor
db <"Text 1"> <"Text 2"> | Distracted Boyfriend
dg <"Text 1"> <"Text 2"> | Distracted Girlfriend
disastergirl <"Text 1"> <"Text 2"> | Disaster Girl
dodgson <"Text 1"> <"Text 2"> | See? Nobody Cares
dogeimg <"Text 1"> <"Text 2"> | Doge
drake <"Text 1"> <"Text 2"> | Drakeposting
ds <"Text 1"> <"Text 2"> | Daily Struggle
dsm <"Text 1"> <"Text 2"> | Dating Site Murderer
dwight <"Text 1"> <"Text 2"> | Schrute Facts
elf <"Text 1"> <"Text 2"> | You Sit on a Throne of Lies
ermg <"Text 1"> <"Text 2"> | Ermahgerd
fa <"Text 1"> <"Text 2"> | Forever Alone
facepalm <"Text 1"> <"Text 2"> | Facepalm
fbf <"Text 1"> <"Text 2"> | Foul Bachelor Frog
feelsgood <"Text 1"> <"Text 2"> | Feels Good
fetch <"Text 1"> <"Text 2"> | Stop Trying to Make Fetch Happen
fine <"Text 1"> <"Text 2"> | This is Fine
firsttry <"Text 1"> <"Text 2"> | First Try!
fmr <"Text 1"> <"Text 2"> | Fuck Me, Right?
fry <"Text 1"> <"Text 2"> | Futurama Fry
fwp <"Text 1"> <"Text 2"> | First World Problems
gandalf <"Text 1"> <"Text 2"> | Confused Gandalf
gb <"Text 1"> <"Text 2"> | Galaxy Brain
gears <"Text 1"> <"Text 2"> | You Know What Really Grinds My Gears?
ggg <"Text 1"> <"Text 2"> | Good Guy Greg
gru <"Text 1"> <"Text 2"> | Gru's Plan
grumpycat <"Text 1"> <"Text 2"> | Grumpy Cat
hagrid <"Text 1"> <"Text 2"> | I Should Not Have Said That
happening <"Text 1"> <"Text 2"> | It's Happening
harold <"Text 1"> <"Text 2"> | Hide the Pain Harold
hipster <"Text 1"> <"Text 2"> | Hipster Barista
icanhas <"Text 1"> <"Text 2"> | I Can Has Cheezburger?
imsorry <"Text 1"> <"Text 2"> | Oh, I'm Sorry, I Thought This Was America
inigo <"Text 1"> <"Text 2"> | Inigo Montoya
interesting <"Text 1"> <"Text 2"> | The Most Interesting Man in the World
ive <"Text 1"> <"Text 2"> | Jony Ive Redesigns Things
iw <"Text 1"> <"Text 2"> | Insanity Wolf
jd <"Text 1"> <"Text 2"> | Joseph Ducreux / Archaic Rap
jetpack <"Text 1"> <"Text 2"> | Nothing To Do Here
joker <"Text 1"> <"Text 2"> | It's Simple, Kill the Batman
jw <"Text 1"> <"Text 2"> | Probably Not a Good Idea
keanu <"Text 1"> <"Text 2"> | Conspiracy Keanu
kermit <"Text 1"> <"Text 2"> | But That's None of My Business
kombucha <"Text 1"> <"Text 2"> | Kombucha Girl
leo <"Text 1"> <"Text 2"> | Leo Strutting
live <"Text 1"> <"Text 2"> | Do It Live!
ll <"Text 1"> <"Text 2"> | Laughing Lizard
lrv <"Text 1"> <"Text 2"> | Laundry Room Viking
mb <"Text 1"> <"Text 2"> | Member Berries
michaelscott <"Text 1"> <"Text 2"> | Michael Scott No God No
millers <"Text 1"> <"Text 2"> | You Guys Are Getting Paid?
minikeanu <"Text 1"> <"Text 2"> | Mini Keanu Reeves
mmm <"Text 1"> <"Text 2"> | Minor Mistake Marvin
money <"Text 1"> <"Text 2"> | Shut Up and Take My Money!
mordor <"Text 1"> <"Text 2"> | One Does Not Simply Walk into Mordor
morpheus <"Text 1"> <"Text 2"> | Matrix Morpheus
mw <"Text 1"> <"Text 2"> | I Guarantee It
nice <"Text 1"> <"Text 2"> | So I Got That Goin' For Me, Which is Nice
noidea <"Text 1"> <"Text 2"> | I Have No Idea What I'm Doing
ntot <"Text 1"> <"Text 2"> | No Take, Only Throw
oag <"Text 1"> <"Text 2"> | Overly Attached Girlfriend
officespace <"Text 1"> <"Text 2"> | That Would Be Great
older <"Text 1"> <"Text 2"> | An Older Code Sir, But It Checks Out
oprah <"Text 1"> <"Text 2"> | Oprah You Get a Car
patrick <"Text 1"> <"Text 2"> | Push it somewhere else Patrick
persian <"Text 1"> <"Text 2"> | Persian Cat Room Guardian
philosoraptor <"Text 1"> <"Text 2"> | Philosoraptor
pigeon <"Text 1"> <"Text 2"> | Is This a Pigeon?
ptj <"Text 1"> <"Text 2"> | Phoebe Teaching Joey
puffin <"Text 1"> <"Text 2"> | Unpopular opinion puffin
red <"Text 1"> <"Text 2"> | Oh, Is That What We're Going to Do Today?
regret <"Text 1"> <"Text 2"> | I Immediately Regret This Decision!
remembers <"Text 1"> <"Text 2"> | Pepperidge Farm Remembers
rollsafe <"Text 1"> <"Text 2"> | Roll Safe
sadbiden <"Text 1"> <"Text 2"> | Sad Joe Biden
sadboehner <"Text 1"> <"Text 2"> | Sad John Boehner
sadbush <"Text 1"> <"Text 2"> | Sad George Bush
sadclinton <"Text 1"> <"Text 2"> | Sad Bill Clinton
sadobama <"Text 1"> <"Text 2"> | Sad Barack Obama
sadfrog <"Text 1"> <"Text 2"> | Sad Frog / Feels Bad Man
saltbae <"Text 1"> <"Text 2"> | Salt Bae
sarcasticbear <"Text 1"> <"Text 2"> | Sarcastic Bear
sb <"Text 1"> <"Text 2"> | Scumbag Brain
scc <"Text 1"> <"Text 2"> | Sudden Clarity Clarence
sf <"Text 1"> <"Text 2"> | Sealed Fate
sk <"Text 1"> <"Text 2"> | Skeptical Third World Kid
ski <"Text 1"> <"Text 2"> | Super Cool Ski Instructor
snek <"Text 1"> <"Text 2"> | Skeptical Snake
soa <"Text 1"> <"Text 2"> | Seal of Approval
sohappy <"Text 1"> <"Text 2"> | I Would Be So Happy
sohot <"Text 1"> <"Text 2"> | So Hot Right Now
soupnazi <"Text 1"> <"Text 2"> | No Soup for You / Soup Nazi
sparta <"Text 1"> <"Text 2"> | This is Sparta!
spiderman <"Text 1"> <"Text 2"> | Spider-Man Pointing at Spider-Man
spongebob <"Text 1"> <"Text 2"> | Mocking Spongebob
ss <"Text 1"> <"Text 2"> | Scumbag Steve
stew <"Text 1"> <"Text 2"> | Baby, You've Got a Stew Going
stopit <"Text 1"> <"Text 2"> | Stop It, Get Some Help
success <"Text 1"> <"Text 2"> | Success Kid
tenguy <"Text 1"> <"Text 2"> | 10 Guy
toohigh <"Text 1"> <"Text 2"> | The Rent Is Too Damn High
tried <"Text 1"> <"Text 2"> | At Least You Tried
trump <"Text 1"> <"Text 2"> | Donald Trump
ugandanknuck <"Text 1"> <"Text 2"> | Ugandan Knuckles
whatyear <"Text 1"> <"Text 2"> | What Year Is It?
winter <"Text 1"> <"Text 2"> | Winter is coming
wkh <"Text 1"> <"Text 2"> | Who Killed Hannibal?
wonka <"Text 1"> <"Text 2"> | Condescending Wonka
xy <"Text 1"> <"Text 2"> | X all the Y
yallgot <"Text 1"> <"Text 2"> | Y'all Got Any More of Them
yodawg <"Text 1"> <"Text 2"> | Xzibit Yo Dawg
yuno <"Text 1"> <"Text 2"> | Y U NO Guy
zerowing <"Text 1"> <"Text 2"> | All Your Base Are Belong to Us
checktokens | Checks the tokens from Tokens.txt and removes invalid ones
spamwebhook <Webhook URL> | Spams a webhook
raidjoin <Invite Code> | Lets all tokens join the server
raidleave <Server ID> | Lets all tokens leave the server
raidmessage <Channel ID> <Amount> <Message> | Lets all tokens write messages in a channel
raidfriendrequest <User ID> | Lets all tokens send friend requests to the user
raidremovefriend <User ID> | Lets all tokens remove the user as friend
raidnick <Guild ID> <Nickname> | Sets the nickname of all tokens on a server
raidreact <Channel ID> <Message ID> <Emoji> | Lets all tokens react on a message with an emoji
raidproxyjoin <Invite Code> | Lets all tokens join the server
raidproxyleave <Server ID> | Lets all tokens leave the server
raidproxymessage <Channel ID> <Amount> <Message> | Lets all tokens write messages in a channel
raidproxyfriendrequest <User ID> | Lets all tokens send friend requests to the user
raidproxyremovefriend <User ID> | Lets all tokens remove the user as friend
raidproxynick <Guild ID> <Nickname> | Sets the nickname of all tokens on a server
raidproxyreact <Channel ID> <Message ID> <Emoji> | Lets all tokens react on a message with an emoji
zoc | Latest price of 01coin
paxghalf | Latest price of 0.5X Long PAX Gold Token
sxphalf | Latest price of 0.5X Long Swipe Token
zcn | Latest price of 0chain
zrx | Latest price of 0x
zxc | Latest price of 0xcert
tshp | Latest price of 12Ships
1inch | Latest price of 1inch
1gold | Latest price of 1irstGold
1wo | Latest price of 1World
bvol | Latest price of Bitcoin Volatility Token
hedge | Latest price of 1X Short Bitcoin Token
ibvol | Latest price of Inverse Bitcoin Volatility Token
2based | Latest price of 2Based Finance
2give | Latest price of 2GIVE
2key | Latest price of 2key.network
altbull | Latest price of 3X Long Altcoin Index Token
balbull | Latest price of 3X Long Balancer Token
bchbull | Latest price of 3X Long Bitcoin Cash Token
bsvbull | Latest price of 3X Long Bitcoin SV Token
bull | Latest price of 3X Long Bitcoin Token
btmxbull | Latest price of 3X Long BitMax Token Token
bnbbull | Latest price of 3X Long BNB Token
adabull | Latest price of 3X Long Cardano Token
linkbull | Latest price of 3X Long Chainlink Token
compbull | Latest price of 3X Long Compound Token Token
cusdtbull | Latest price of 3X Long Compound USDT Token
defibull | Latest price of 3X Long DeFi Index Token
eosbull | Latest price of 3X Long EOS Token
ethbull | Latest price of 3X Long Ethereum Token
exchbull | Latest price of 3X Long Exchange Token Index Token
kncbull | Latest price of 3X Long Kyber Network Token
ltcbull | Latest price of 3X Long Litecoin Token
xlmbull | Latest price of 3X Long Stellar Token
trxbull | Latest price of 3X Long TRX Token
vetbull | Latest price of 3X Long VeChain Token
xrpbull | Latest price of 3X Long XRP Token
altbear | Latest price of 3X Short Altcoin Index Token
balbear | Latest price of 3X Short Balancer Token
bchbear | Latest price of 3X Short Bitcoin Cash Token
bsvbear | Latest price of 3X Short Bitcoin SV Token
btmxbear | Latest price of 3X Short BitMax Token Token
bnbbear | Latest price of 3X Short BNB Token
adabear | Latest price of 3X Short Cardano Token
linkbear | Latest price of 3X Short Chainlink Token
compbear | Latest price of 3X Short Compound Token Token
cusdtbear | Latest price of 3X Short Compound USDT Token
defibear | Latest price of 3X Short DeFi Index Token
eosbear | Latest price of 3X Short EOS Token
ethbear | Latest price of 3X Short Ethereum Token
exchbear | Latest price of 3X Short Exchange Token Index Token
kncbear | Latest price of 3X Short Kyber Network Token
ltcbear | Latest price of 3X Short Litecoin Token
xlmbear | Latest price of 3X Short Stellar Token
trxbear | Latest price of 3X Short TRX Token
vetbear | Latest price of 3X Short VeChain Token
xrpbear | Latest price of 3X Short XRP Token
404 | Latest price of 404
42 | Latest price of 42-coin
4art | Latest price of 4ART Coin
kwatt | Latest price of 4New
7e | Latest price of 7ELEVEN
exe | Latest price of 8X8 Protocol
aave | Latest price of Aave
adai | Latest price of Aave DAI
ghst | Latest price of Aavegotchi
aren | Latest price of Aave REN
aab | Latest price of AAX Token
abc | Latest price of ABC Chain
at | Latest price of ABCC Token
abs | Latest price of Absolute
act | Latest price of Achain
acm | Latest price of AC Milan Fan Token
ac | Latest price of ACoconut
acoin | Latest price of Acoin
actn | Latest price of Action Coin
acu | Latest price of Acuity
aac | Latest price of Acute Angle Cloud
adm | Latest price of ADAMANT Messenger
adb | Latest price of adbank
add | Latest price of Add.xyz (NEW)
adl | Latest price of Adelphoi
adx | Latest price of AdEx
adi | Latest price of Aditus
ads | Latest price of Adshares
adt | Latest price of adToken
aib | Latest price of Advanced Integrated Blocks
adz | Latest price of Adzcoin
ags | Latest price of Aegis
aeon | Latest price of Aeon
aergo | Latest price of Aergo
arnx | Latest price of Aeron
aet | Latest price of AEROTOKEN
aer | Latest price of Aeryus
ae | Latest price of Aeternity
aevo | Latest price of Always Evolving
att | Latest price of Africa Trading Chain
agvc | Latest price of AgaveCoin
aget | Latest price of Agetron
agrs | Latest price of Agoras Token
dlt | Latest price of Agrello
aat | Latest price of Agricultural Trade Chain
aht | Latest price of AhaToken
ait | Latest price of AICHAIN
aid | Latest price of AidCoin
aidoc | Latest price of AI Doctor
adk | Latest price of Aidos Kuneen
aidus | Latest price of AIDUS Token
ali | Latest price of AiLink Token
aion | Latest price of Aion
aipe | Latest price of AI Prediction Ecosystem
abl | Latest price of Airbloc
airx | Latest price of Aircoins
ast | Latest price of AirSwap
agt | Latest price of AISF
akt | Latest price of Akash Network
akn | Latest price of Akoin
aka | Latest price of Akroma
akro | Latest price of Akropolis
adel | Latest price of Delphi
atp | Latest price of Alaya
sds | Latest price of Alchemint
alcx | Latest price of Alchemix
ach | Latest price of Alchemy Pay
aleph | Latest price of Aleph.im
alex | Latest price of Alex
algo | Latest price of Algorand
alg | Latest price of Algory
abbc | Latest price of ABBC
alis | Latest price of ALIS
allbi | Latest price of ALL BEST ICO
afo | Latest price of All For One Business
albt | Latest price of AllianceBlock
acd | Latest price of Alliance Cargo Direct
all | Latest price of Alliance Fan Token
alv | Latest price of Allive
me | Latest price of All.me
aly | Latest price of Ally
aloha | Latest price of Aloha
alpa | Latest price of Alpaca
alp | Latest price of ALP Coin
acat | Latest price of Alphacat
apc | Latest price of Alpha Coin
dex | Latest price of AlphaDex
alpha | Latest price of Alpha Finance
ank | Latest price of AlphaLink
aqt | Latest price of Alpha Quark Token
xlq | Latest price of ALQO
alc | Latest price of AlrightCoin
alt | Latest price of AltEstate Token
aln | Latest price of Aluna
amb | Latest price of Ambrosus
ame | Latest price of Amepay
amio | Latest price of Amino Network
amis | Latest price of AMIS
amo | Latest price of AMO Coin
amn | Latest price of Amon
amon | Latest price of AmonD
veo | Latest price of Amoveo
ampl | Latest price of Ampleforth
aapx | Latest price of AMPnet
amp | Latest price of Amp
anct | Latest price of Anchor
anw | Latest price of Anchor Neural World Token
adc | Latest price of Android chain
afu | Latest price of Animal Friends United
ani | Latest price of Animecoin
anj | Latest price of Aragon Court
ankr | Latest price of Ankr
anon | Latest price of ANON
amc | Latest price of Anonymous Coin
xamp | Latest price of Antiample
matter | Latest price of AntiMatter
any | Latest price of ANYONE
ape | Latest price of APEcoin
cpx | Latest price of Apex Network
aph | Latest price of APHolding Coin
api3 | Latest price of API3
apis | Latest price of APIS Coin
apix | Latest price of APIX
apm | Latest price of apM Coin
apl | Latest price of Apollo
xap | Latest price of Apollon Network
appc | Latest price of AppCoins
apx | Latest price of Appics
apy | Latest price of APY.Finance
aqua | Latest price of Aqua
arco | Latest price of AquariusCoin
ant | Latest price of Aragon
araw | Latest price of ARAW Token
abx | Latest price of Arbidex
arb | Latest price of ARbit Coin
arct | Latest price of ArbitrageCT
abt | Latest price of Arcblock
arcx | Latest price of ARC Governance
arch | Latest price of Archer DAO Governance Token
arx | Latest price of ARCS
arc | Latest price of Advanced Technology Coin
ardx | Latest price of ArdCoin
ardr | Latest price of Ardor
arepa | Latest price of Arepacoin
arg | Latest price of Argentum
aria20 | Latest price of Arianee
ar | Latest price of Arix
ark | Latest price of Ark
armor | Latest price of ARMOR
arnxm | Latest price of Armor NXM
arm | Latest price of Armours
arpa | Latest price of ARPA Chain
arq | Latest price of ArQmA
aby | Latest price of ArtByte
aya | Latest price of Aryacoin
asn | Latest price of Ascension
xas | Latest price of Asch
acc | Latest price of Asian-African Capital Chain
asp | Latest price of Aspire
asr | Latest price of AS Roma Fan Token
atx | Latest price of Aston
astr | Latest price of ASTR Coin
astro | Latest price of Astro
asa | Latest price of Asura
atri | Latest price of Atari
atb | Latest price of ATBCoin
atd | Latest price of A2DAO
ath | Latest price of Atheios
atl | Latest price of Atlant
atmos | Latest price of Atmos
atn | Latest price of ATN
awc | Latest price of Atomic Wallet Coin
ag8 | Latest price of ATROMG8
auction | Latest price of Bounce
auc | Latest price of Auctus
audio | Latest price of Audius
rep | Latest price of Augur
aunit | Latest price of Aunit
are | Latest price of Aurei
auscm | Latest price of Auric Network
aur | Latest price of Aurix
aoa | Latest price of Aurora
idex | Latest price of IDEX
awg | Latest price of AurusGOLD
auto | Latest price of Auto
niox | Latest price of Autonio
avax | Latest price of Avalanche