forked from MFarelS/telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
3531 lines (3385 loc) · 119 KB
/
bot.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
/* Weem nya um ;v
Script By MrDevils
kalau makai makai aja ngak usah nanyak apa itu apikey, apa itu rest api, apa itu api, kenapa ini nyenyenyenye
dah lah
oh ya jangan lupa apikey iteach diganti sama apikey kalian
caranya kalian tinggal buat akun atau login ke:
1655786295:AAEB1acJaFsStKY6iIfTa5f0z3LEn_CLaqYhttps://api.i-tech.id
- lalu kalian buka informasi profile
- nah disitu kan ada apikey kalian kalian ganti pakai apikey kalian
hayoo mau ngapain
mau ngambil kode yah ? izin dulu sama creator
semua yang ada di sini bersifat gratis jadi kamlian tidak perlu repot repot beli ampikey
dilarang keras untuk menjual belikan script ini
facebook : facebook.com/adimas.shadoet123
instagram : adimas_shadoet
*/
const Telegraf = require('telegraf')
const bot = new Telegraf('1675749539:AAH46KNMRschhJDMuI5dclpp9FnB0znEaK4')
const axios = require('axios')
/*********[ Apikey ]*********/
let lolhuman = '99ecdb09b1053d90fbc15d56'
let iteach = 'Ganti pakai apikey kalian' //silahkan login/register di https://api.i-tech.id untuk mendapatkan apikey
/***************************/
const helpMessage = `Katakan sesuatu kepada saya\n/start - untuk memulai bot\n/menu - untuk menampilkan list menu`;
bot.use((ctx, next) => {
if(ctx.updateSubTypes[0] == "text"){
console.log("[ @"+ctx.from.username+" ] Mengeksekusi : "+ctx.message.text);
}else{
console.log("[ @"+ctx.from.username+" ] Mengirim : "+ctx.updateSubTypes[0]);
}
next();
})
bot.command("start", ctx => {
ctx.reply("Halo "+ctx.from.first_name);
ctx.reply("Silahkan pilih menu dibawah ini...",
{
reply_markup: {
inline_keyboard: [
[
{ text: 'Menu', callback_data: 'menu'},
{ text: 'Profile', callback_data: 'profile'}
]
]
}
})
})
bot.hears('/', (ctx) => {
ctx.reply(helpMessage);
})
bot.hears('Kembali Ke Menu Utama', (ctx) => {
let priceMessage = '┏━━❉ DARK BOT ❉━━━┓\n┣⊱ Creator : MrDevils\n┣⊱ Whatsapp : 85939888897\n┣⊱ Github : github.com/adimas999\n┣⊱ IG : adimas_sahadoet\n┣⊱ Owner : MrDevils\n┗━━━━━━━━━━━━━━━━\n┏━━❉ *INFO* ❉━━━┓\n┣⊱ *Dilarang spam bot*\n┗━━━━━━━━━━━━━━━━\n┏━━⊱ *BOT MENU* ⊰━━┓\n┣⊱ /othermenu\n┣⊱ /makermenu\n┣⊱ /praymenu\n┣⊱ /funmenu\n┣⊱ /kerangmenu\n┣⊱ /mediamenu\n┣⊱ /animemenu\n┣⊱ /nsfwmenu\n┣⊱ /downloadmenu(error)\n┗━━━━━━━━━━━━━━━━';
ctx.deleteMessage();
bot.telegram.sendMessage(ctx.chat.id, priceMessage,
{
reply_markup: {
keyboard: [
[
{text: 'Other Menu'},
{text: "Maker Menu"},
{text: "Pray Menu"}
],
[
{text: "Fun Menu"},
{text: "Kerang Menu"},
{text: "Media Menu"}
],
[
{text: "Anime Menu"},
{text: "Nsfw Menu"},
{text: "Download Menu"}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.action('menu', ctx => {
let priceMessage = '┏━━❉ DARK BOT ❉━━━┓\n┣⊱ Creator : MrDevils\n┣⊱ Whatsapp : 85939888897\n┣⊱ Github : github.com/adimas999\n┣⊱ IG : adimas_sahadoet\n┣⊱ Owner : MrDevils\n┗━━━━━━━━━━━━━━━━\n┏━━❉ *INFO* ❉━━━┓\n┣⊱ *Dilarang spam bot*\n┗━━━━━━━━━━━━━━━━\n┏━━⊱ *BOT MENU* ⊰━━┓\n┣⊱ /othermenu\n┣⊱ /makermenu\n┣⊱ /praymenu\n┣⊱ /funmenu\n┣⊱ /kerangmenu\n┣⊱ /mediamenu\n┣⊱ /animemenu\n┣⊱ /nsfwmenu\n┣⊱ /downloadmenu(error)\n┗━━━━━━━━━━━━━━━━';
ctx.deleteMessage();
bot.telegram.sendMessage(ctx.chat.id, priceMessage,
{
reply_markup: {
keyboard: [
[
{text: 'Other Menu'},
{text: "Maker Menu"},
{text: "Pray Menu"}
],
[
{text: "Fun Menu"},
{text: "Kerang Menu"},
{text: "Media Menu"}
],
[
{text: "Anime Menu"},
{text: "Nsfw Menu"},
{text: "Download Menu"}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
//silahkan di edit sesuka hati kalian
bot.hears(['Hi','Hallo','Halo'], (ctx) => {
ctx.reply("Hallo "+ctx.from.username+" ada yang bisa saya bantu?");
})
bot.hears(['Assalamualaikum','Asalamualaikum','Assalamualaikum wr wb','Asalamualaikum wr wb'], (ctx) => {
ctx.reply("Waalaikumsalam Wr Wb");
})
bot.hears('Bot', (ctx) => {
ctx.reply("Hallo "+ctx.from.username+"\n\nJika Kamu ingin menggunakan BOT silahkan ketikan command /menu atau /help");
})
bot.hears('Apakabar', (ctx) => {
ctx.reply("Saya Baik baik saja bagaimana dengan mu?");
})
bot.hears(['Alhamdulilah baik','Baik','Saya baik baik saja'], (ctx) => {
ctx.reply("Alhamdulilah semoga sehat selalu");
})
//end message
//Bot Settings
const makerMessage = `┏━━⊱ *MAKER MENU* ⊰━━┓\n┣⊱ /nulis \n┣⊱ /crosslogo <text>\n┣⊱ /cat <text>\n┣⊱ /tahta <teks>\n┣⊱ /flowertext <text>\n┣⊱ /flametext <text>\n┣⊱ /woodentext <text>\n┣⊱ /silktext <text>\n┣⊱ /glowtext <text>\n┣⊱ /smoketext <text>\n┣⊱ /pubglogo |<text>|<text>\n┣⊱ /skytext <text>\n┣⊱ /cslogo <text>\n┣⊱ /emojiimage <emoji>\n┣⊱ /lightext <text>\n┣⊱ /retro <text>\n┣⊱ /text3dbox <text>\n┣⊱ /crismes <text>\n┣⊱ /thunder <text>\n┣⊱ /gpbutton <text>\n┣⊱ /spbutton <text>\n┣⊱ /snowwrite <text>\n┣⊱ /colortext <text>\n┣⊱ /grafiti <text>\n┣⊱ /pantai <text>\n┣⊱ /watercolor <text>\n┣⊱ /firetext <text>\n┣⊱ /metaltext <text>\n┣⊱ /baloontext <text>\n┣⊱ /padlocktext <text>\n┣⊱ /txtgif <text>\n┣⊱ /slidingtext <text>\n┣⊱ /bannerff <text>\n┣⊱ /logoff <text>\n┣⊱ /logoml <text>\n┣⊱ /blackpink <text>\n┣⊱ /textthunder <text>\n┣⊱ /silktext <text>\n┣⊱ /partytext <text>\n┣⊱ /romancetext <text>\n┣⊱ /googletxt |<text>|<text>|<text>\n┣⊱ /glowtext2 <text>\n┣⊱ /lovemessage <text>\n┣⊱ /glitchtxt |<text>|<text>\n┣⊱ /galaxytxt <text>\n┣⊱ /phlogo |<text>|<text>\n┣⊱ /wetglass <text>\n┣⊱ /stylelogo <text>\n┣⊱ /watercolor2 <text>\n┣⊱ /qrcode <text>\n┣⊱ /txtimg <text>\n┗━━━━━━━━━━━━━━━━`
const otherMessage = `┏━━❉ *OTHER MENU* ❉━━━┓\n┣⊱ /reply <text>\n┣⊱ /RandomCat\n┣⊱ /RandomQuotes\n┣⊱ /QuotesNime\n┣⊱ /InfoGempa\n┣⊱ /FMyLive\n┣⊱ /MostViewFilm\n┣⊱ /RandomNama\n┣⊱ /RenunganHarian\n┣⊱ /FaktaUnik\n┣⊱ /MLHeroList\n┣⊱ /JadwalTVNow\n┣⊱ /KOIN\n┣⊱ /DADU\n┣⊱ /POKEMON\n┣⊱ /PuisiImage\n┣⊱ /RandomASU\n┣⊱ /RandomRubah\n┣⊱ /RandomKambing\n┣⊱ /RandomPanda\n┣⊱ /RandomBurung\n┣⊱ /RandomTupai\n┣⊱ /RandomKoala\n┣⊱ /bucin\n┣⊱ /coronaIndonesia\n┗━━━━━━━━━━━━━━━━`
const tobatMessage = `┏━━❉ *PRAY MENU* ❉━━━┓\n┣⊱ /alkitab\n┣⊱ /quran <no surat>\n┣⊱ /quranlist\n┣⊱ /jadwalshalat <daerah>\n┗━━━━━━━━━━━━━━━━`
const funMessage = `┏━━❉ *FUN MENU* ❉━━━┓\n┣⊱ /artinama <nama>\n┣⊱ /artimimpi <mimpi>\n┣⊱ /lirik <judul>\n┣⊱ /chord <judul>\n┣⊱ /zodiak <zodiak>\n┣⊱ /wikipaedi <text>\n┣⊱ /brainly <text>\n┣⊱ /kalkulator <angka>\n┣⊱ /weather <kota>\n┣⊱ /caklontong\n┣⊱ /family100\n┣⊱ /resep <masakan>\n┣⊱ /shopee <barang>\n┣⊱ /pinte <text>\n┣⊱ /gsmarena <nama>\n┣⊱ /cekjodoh |nama kamu|nama doi|\n┣⊱ /weton |tangal|bulan|tahun|\n┣⊱ /nomorhoki <no hp>\n┣⊱ /harijadian |tangal|bulan|tahun|\n┣⊱ /ipwhois <ip>\n┣⊱ /ascitxt <text>\n┣⊱ /distance |dari|ke|\n┣⊱ /infoalamat <alamat>\n┣⊱ /infomotor <merek>\n┣⊱ /infomobil <merek>\n┗━━━━━━━━━━━━━━━━`
const kerangMessage = `
┏━━❉ *KERANG MENU* ❉━━━┓
┣⊱ /apakah <text>
┣⊱ /bisakah <text>
┣⊱ /kapankah <text>
┣⊱ /rate <text>
┗━━━━━━━━━━━━━━━━`
const mediaMessage = `
┏━━❉ *MEDIA MENU* ❉━━━┓
┣⊱ /tiktokp <text>
┣⊱ /tiktokh <text>
┣⊱ /igprofile <text>
┣⊱ /igstory <text>
┣⊱ /igtv
┣⊱ /ighastag
┣⊱ /ytsearch
┣⊱ /googles
┣⊱ /googleimg
┣⊱ /smuleprof
┣⊱ /smulerecod
┣⊱ /twiterprof
┣⊱ /trendtwit
┣⊱ /twiterindo
┣⊱ /genprim
┣⊱ /urlshort
┣⊱ /ssweb
┗━━━━━━━━━━━━━━━━`
const animeMessage = `
┏━━❉ *ANIME MENU* ❉━━━┓
┣⊱ /nekonime
┣⊱ /Loli
┣⊱ /elf
┣⊱ /waifu
┣⊱ /shota
┣⊱ /husbu
┣⊱ /shinobu
┣⊱ /megumin
┣⊱ /animeart
┣⊱ /walpapernime
┣⊱ /Wibu
┣⊱ /anime <judul>
┣⊱ /animehug
┣⊱ /animekiss
┣⊱ /animecry
┣⊱ /neonime <query>
┣⊱ /neonimed <url>
┣⊱ /ongoinganoboy
┗━━━━━━━━━━━━━━━━`
const nsfwMessage = `
┏━━❉ *ANIME MENU* ❉━━━┓
┣⊱ /xxsearch <query>
┣⊱ /xxd <link>
┣⊱ /nekosearch <query>
┣⊱ /nhentaipdf <id>
┣⊱ /nhentai <query>
┗━━━━━━━━━━━━━━━━`
const bisakah = ['bisa','tidak bisa','mungkin bisa','mungkin tidak','coba ulangi']
const apakah = ['Ya','Tidak','Coba ulangi']
const persen = ['1','2','3','4','5','6','7','8','9','10','15','20','25','30','35','40','45','50','55','60','65','70','75','80','85','90','95','96','97','98','99','100']
const angka = ['0','1','2','3','4','5','6','7','8','9','10','11','12']
const kapankah = ['1','2','3','4','5','6','7','8','9','10',,'11','12','13','14','15','16','17','18','19','20']
const hari = ['Tahun','Bulan','Hari','Minggu','Jam']
const apa = ['Lagi','Yang lalu']
const hero = `
Hero Tank :
1. Ruby
2. Atlas
3. Barats
4. Baxia
5. Grock
6. Lolita
7. Johnson
8. Esmeralda
9. Hylos
10. Belerick
11. Uranus
12. Khufra
13. Gatot Kaca
14. Hilda
15. Minotour
16. Balmond
17. Tigriel
18. Akai
19. Franco
Hero Fighter :
1. Ruby
2. Minsitthar
3. Argus
4. Thamuz
5. Khaleed
6. Silvanna
7. Yu Zhong
8. Barats
9. Masha
10. Aldous
11. Kaja
12. Martis
13. Jawhead
14. Leomord
15. Guinevere
16. Badang
17. X Borg
18. Terizla
19. Dyroth
20. Gatotkaca
21. Lapu-lapu
22. Sun
23. Alpha
24. Freya
25. Chou
26. Roger
27. Hilda
28. Balmond
29. Bane
30. Zilong
31. Alucard
Hero Assasin :
1. Harley
2. Kadita
3. Ling
4. Helcurt
5. Lancelot
6. Lapu-lapu
7. Lesley
8. Selena
9. Gusion
10. Hanzo
11. Yi Shun-shin
12. Hayabusa
13. Natalia
14. Karina
15. Fanny
16. Saber
17. Zilong
18. Alucard
Hero Marksman :
1. Claude
2. Kimmy
3. Popol & Kupa
4. Yi Sun-shin
5. Moskov
6. Wanwan
7. Lesley
8. Granger
9. Hanabi
10. Irithel
11. Roger
12. Karrie
13. Bruno
14. Layla
15. Clint
16. Miya
Hero Mage :
1. Harley
2. Chang’e
3. Vale
4. Kimmy
5. Kadita
6. Faramis
7. Cecilion
8. Luo Yi
9. Valir
10. Parsha
11. Zhask
12. Selena
13. Harith
14. Lunox
15. Esmeralda
16. Lylia
17. Odette
18. Kagura
19. Vexana
20. Aurora
21. Alice
22. Cyclops
23. Eduora
24. Nana
25. Gord
Hero Support :
1. Estes
2. Faramis
3. Carmilla
4. Kaja
5. Lolita
6. Angela
7. Diggie
8. Minotaur
9. Nana
10. Rafaela` //kalau ada yang kurang tambahin aja sendiri saya capek ;v
//end settings
//list menu
bot.hears('Remove keyboard!!', ctx => {
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id,'Keyboard Berhasil Dihilangkan!!',
{
reply_markup: {
remove_keyboard: true //kalau ngak ngerti jngan di utak atik
}
})
})
bot.command('info', (ctx) => {
//console.log(ctx.botInfo)
ctx.reply("ID = "+ctx.botInfo.id+"\nIs bot = "+ctx.botInfo.is_bot+"\nNama BOT = "+ctx.botInfo.first_name+"\nUsername = @"+ctx.botInfo.username+"\nCan Join Groups = "+ctx.botInfo.can_join_groups+"\nCan Read all Group Message = "+ctx.botInfo.can_read_all_group_messages+"\nSupports Inline Queries = "+ctx.botInfo.supports_inline_queries)
})
bot.hears('Maker Menu', ctx => {
let maker = makerMessage;
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, maker,
{
reply_markup: {
keyboard: [
[
{text: 'Nulis'},
],
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Other Menu', ctx => {
let other = otherMessage;
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, other,
{
reply_markup: {
keyboard: [
[
{text: 'Random pantun'},
{text: 'Random cat'},
{text: 'Random quotes'}
],
[
{text: 'Quotes Nime'},
{text: 'F my live'},
{text: 'Most view film'}
],
[
{text: 'Random nama'},
{text: 'Info Gempa'},
{text: 'Renungan harian'}
],
[
{text: 'ML hero list'},
{text: 'Fakta unik'},
{text: 'Jadwal Tv Now'}
],
[
{text: 'Koin'},
{text: 'Dadu'},
{text: 'Pokemon'}
],
[
{text: 'Random asu'},
{text: 'Random rubah'},
{text: 'Random kambing'}
],
[
{text: 'Random panda'},
{text: 'Random burung'},
{text: 'Random tupai'}
],
[
{text: 'Random koala'},
{text: 'Puisi image'},
{text: 'Random quotes EN'}
],
[
{text: 'Kata bijak'},
{text: 'Bucin'},
{text: 'Corona Indonesia'}
],
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Pray Menu', (ctx) => {
let pray = tobatMessage
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, pray,
{
reply_markup: {
keyboard: [
[
{text: 'Alkitab'},
{text: 'Quran list'},
],
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Fun Menu', (ctx) => {
let fun = funMessage
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, fun,
{
reply_markup: {
keyboard: [
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Kerang Menu', (ctx) => {
let kerang = kerangMessage
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, kerang,
{
reply_markup: {
keyboard: [
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Media Menu', (ctx) => {
let medi = mediaMessage
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, medi,
{
reply_markup: {
keyboard: [
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Anime Menu', (ctx) => {
let nime = animeMessage
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, nime,
{
reply_markup: {
keyboard: [
[
{text : 'Random Nekonime'},
{text : 'Random Loli'},
{text : 'Random Elf'}
],
[
{text : 'Random Waifu'},
{text : 'Random Shota'},
{text : 'Random Husbu'}
],
[
{text : 'Random Shinobu'},
{text : 'Random Megumin'},
{text : 'Random Anime Art'}
],
[
{text : 'Random Walpaper Anime'},
{text : 'Random Wibu'},
{text : 'Random Anime Hug'}
],
[
{text : 'Random Anime Kiss'},
{text : 'Random Anime Cry'},
{text : 'Ongoing Anoboy'}
],
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.hears('Nsfw Menu', (ctx) => {
let medi = mediaMessage
ctx.deleteMessage()
bot.telegram.sendMessage(ctx.chat.id, medi,
{
reply_markup: {
keyboard: [
[
{text : 'Hentai List'},
{text : '3D List'},
{text : 'Neko Jav'}
],
[
{text : 'SEX'},
{text : 'Random Hentai'},
{text : 'NSFW Neko'}
],
[
{text : 'ECCHI'},
{text : 'Ahegao'},
{text : 'Holo Lewd'}
],
[
{text : 'Side Oppai'},
{text : 'Anime Feets'},
{text : 'Anime Booty'}
],
[
{text : 'Anime Thighss'},
{text : 'Hentai Paradise'},
{text : 'Anime Arm Pits'}
],
[
{text : 'Hentai Femdom'},
{text : 'Lewd Anime Girls'},
{text : 'Big Anime Tiddies'}
],
[
{text : 'Anime Belly Button'},
{text : 'Hentai Everyone'}
],
[
{text: 'Kembali Ke Menu Utama'}
],
[
{text: 'Remove keyboard!!'}
]
]
}
})
})
bot.command('reply', (ctx) => {
let input = ctx.message.text;
let inputArray = input.split(" ");
let message = "";
if(inputArray.length == 1){
message = "masukan parameter teks";
}else{
inputArray.shift();
message = inputArray.join(" ");
}
ctx.reply(message);
})
bot.hears('Random pantun', (ctx) => {
ctx.deleteMessage()
axios.get('https://api.vhtear.com/random_pantun&apikey=AW62938KK46292gJ73639h')
.then(res => {
//console.log(res);
ctx.reply("Pantun : "+res.data.result.pantun);
}).catch(e => {
console.log(e);
})
})
bot.hears('Random quotes EN', (ctx) => {
ctx.deleteMessage()
axios.get('https://api.vhtear.com/quotes?apikey=AW62938KK46292gJ73639h')
.then(res => {
//console.log(res);
ctx.reply("Tags : "+res.data.result.tags+"\nAuthor : "+res.data.result.author+"\nContent : "+res.data.result.content);
}).catch(e => {
console.log(e);
})
})
bot.hears('Kata bijak', (ctx) => {
ctx.deleteMessage()
axios.get('lolhuman.herokuapp.com/api/random/katabijak?apikey='+lolhuman)
.then(res => {
//console.log(res);
ctx.reply("Kata : "+res.data.result);
}).catch(e => {
console.log(e);
})
})
bot.hears('Corona Indonesia', (ctx) => {
ctx.deleteMessage()
axios.get('lolhuman.herokuapp.com/api/corona/indonesia?apikey='+lolhuman)
.then(res => {
//console.log(res);
ctx.reply("Positif : "+res.data.result.positif+"\nSembuh : "+res.data.result.sembuh+"\nDirawat : "+res.data.result.dirawat+"\nMeninggal : "+res.data.result.meninggal);
}).catch(e => {
console.log(e);
})
})
bot.hears('Bucin', (ctx) => {
ctx.reply("silahkan pilih salah satu",
{
reply_markup: {
inline_keyboard: [
[
{ text: 'Bucin 1', callback_data: 'bucin'},
{ text: 'Bucin 2', callback_data: 'bucin1'}
],
[
{ text: 'Kembali Ke Menu Utama', callback_data: "menu"}
]
]
}
})
})
bot.action('bucin', (ctx) => {
axios.get('http://lolhuman.herokuapp.com/api/random/bucin?apikey='+lolhuman)
.then(res => {
//console.log(res);
ctx.reply("Bucin : "+res.data.result);
}).catch(e => {
console.log(e);
})
})
bot.action('bucin1', (ctx) => {
axios.get('http://lolhuman.herokuapp.com/api/random/katabucin?apikey='+lolhuman)
.then(res => {
//console.log(res);
ctx.reply("Bucin : "+res.data.result);
}).catch(e => {
console.log(e);
})
})
bot.hears('Random quotes', (ctx) => {
ctx.reply("silahkan pilih salah satu",
{
reply_markup: {
inline_keyboard: [
[
{ text: 'Quotes 1', callback_data: 'randomquotes'},
{ text: 'Quotes 2', callback_data: 'randomquotes2'}
],
[
{ text: 'Quotes 3', callback_data: 'randomquotes3'}
],
[
{ text: 'Kembali Ke Menu Utama', callback_data: "menu"}
]
]
}
})
})
bot.action('randomquotes', (ctx) => {
axios.get('https://mhankbarbar.herokuapp.com/api/randomquotes')
.then(res => {
//console.log(res);
ctx.reply("Author : "+res.data.author+"\nQuotes : "+res.data.quotes);
}).catch(e => {
console.log(e);
})
})
bot.action('randomquotes2', (ctx) => {
axios.get('http://docs-jojo.herokuapp.com/api/randomquotes')
.then(res => {
//console.log(res);
ctx.reply("Author : "+res.data.author+"\nQuotes : "+res.data.quotes);
}).catch(e => {
console.log(e);
})
})
bot.action('randomquotes3', (ctx) => {
axios.get('https://tobz-api.herokuapp.com/api/randomquotes?apikey=BotWeA')
.then(res => {
//console.log(res);
ctx.reply("Author : "+res.data.author+"\nQuotes : "+res.data.quotes);
}).catch(e => {
console.log(e);
})
})
bot.hears('Info Gempa', (ctx) => {
ctx.reply('Mohon tunggu sebentar....')
axios.get('https://mhankbarbar.herokuapp.com/api/infogempa')
.then(res => {
// console.log(res);
ctx.reply("📍 Lokasi : "+res.data.lokasi+"\n🔽 Kedalaman : "+res.data.kedalaman+"\n📌 Koordinat : "+res.data.koordinat+"\n🔴 Magnitude : "+res.data.magnitude+"\n🔵 Potensi : "+res.data.potensi+"\n⏰ Waktu : "+res.data.waktu);
}).catch(e => {
console.log(e);
})
})
bot.hears('Quotes Nime', (ctx) => {
ctx.reply("silahkan pilih salah satu",
{
reply_markup: {
inline_keyboard: [
[
{ text: 'Quotes Nime1 1', callback_data: 'quotesnime2'},
{ text: 'Quotes Nime 2', callback_data: 'quotesnime'}
],
[
{ text: 'Kembali Ke Menu Utama', callback_data: 'menu'}
]
]
}
})
})
bot.action('quotesnime', (ctx) => {
axios.get('https://mhankbarbar.herokuapp.com/api/quotesnime/random')
.then(res => {
//console.log(res);
ctx.reply("Anime : "+res.data.data.anime+"\nCharacter : "+res.data.data.character+"\nQuotes : "+res.data.data.quote)
}).catch(e => {
console.log(e);
})
})
bot.action('quotesnime2', (ctx) => {
axios.get('http://docs-jojo.herokuapp.com/api/quotesnime/random')
.then(res => {
//console.log(res);
ctx.reply("Quotes : "+res.data.data.quote)
}).catch(e => {
console.log(e);
})
})
bot.hears('Renungan harian', (ctx) => {
axios.get('http://docs-jojo.herokuapp.com/api/renungan')
.then(res => {
//console.log(res);
ctx.reply("Judul : "+res.data.judul+"\nIsi : "+res.data.isi+"\nPesan : "+res.data.pesan)
}).catch(e => {
console.log(e);
})
})
bot.hears('Random nama', (ctx) => {
ctx.reply('Silahkan pilih salah satu',
{
reply_markup: {
inline_keyboard: [
[
{ text: 'Random Nama Pria', callback_data: 'namapria'},
{ text: 'Random Nama Wanita', callback_data: 'namawanita'},
],
[
{ text: 'Random', callback_data: 'randomnama'}
],
[
{ text: 'Kembali Ke Menu Utama', callback_data: 'menu'}
]
]
}
})
})
bot.action('namapria', (ctx) => {
axios.get('https://api.i-tech.id/tools/nama?key='+iteach+'&gender=male')
.then(res => {
console.log(res);
//ctx.reply("Nama : "+res.data.result)
}).catch(e => {
console.log(e);
})
})
bot.action('namawanita', (ctx) => {
axios.get('https://api.i-tech.id/tools/nama?key='+iteach+'&gender=female')
.then(res => {
//console.log(res);
ctx.reply("Nama : "+res.data.result)
}).catch(e => {
console.log(e);
})
})
bot.action('randomnama'), (ctx) => {
const gender = ['male','female']
axios.get('https://api.i-tech.id/tools/nama?key='+iteach+'&gender='+gender)
.then(res => {
//console.log(res);
ctx.reply("Nama : "+res.data.result)
}).catch(e => {
console.log(e);
})
}
bot.hears('Fakta unik', (ctx) => {
ctx.reply("Please waitt...")
axios.get('https://api.i-tech.id/tools/fakta?key='+iteach)
.then(res => {
//console.log(res.data);
ctx.reply("Fakta : "+res.data.result)
}).catch(e => {
console.log(e);
})
})
bot.hears('Alkitab', (ctx) => {
ctx.deleteMessage()
ctx.reply("Please waitt...")
axios.get('http://docs-jojo.herokuapp.com/api/alkitab')
.then(res => {
//console.log(res);
ctx.reply("Ayat : "+res.data.result.ayat+"\nIsi : "+res.data.result.isi)
}).catch(e => {
console.log(e);
})
})
/************[ Pray Menu ]***********/
//awokowkaowk
//hemmm.....
//dahlah
/************[ Pray Menu ]**********/
bot.hears('Alkitab', (ctx) => {
ctx.deleteMessage()
ctx.reply("Please waitt...")
axios.get('http://docs-jojo.herokuapp.com/api/alkitab')
.then(res => {
//console.log(res);
ctx.reply("Ayat : "+res.data.result.ayat+"\nIsi : "+res.data.result.isi)
}).catch(e => {
console.log(e);
})
})
bot.hears('Quran list', (ctx) => {
ctx.deleteMessage()
ctx.reply("Please waitt...")
axios.get('https://api.vhtear.com/quranlist?&apikey=AW62938KK46292gJ73639h')
.then(res => {
//console.log(res.data.result.list);
ctx.reply("List : \n"+res.data.result.list)
}).catch(e => {
console.log(e);
})
})
bot.command('quran', (ctx) => {
ctx.reply("Please waitt...")
let input = ctx.message.text;
let inputArray = input.split(" ");
inputArray.shift();
message = inputArray.join(" ");
axios.get('https://api.vhtear.com/quran?no='+message+'&apikey=AW62938KK46292gJ73639h')
.then(res => {
//console.log(res.data.result.list);
ctx.reply("Surah : "+res.data.result.surah+"\nQuran : "+res.data.result.quran)
}).catch(e => {
console.log(e);
})
})
bot.command('jadwalshalat', (ctx) => {
ctx.reply("Please waitt...")
let input = ctx.message.text;
let inputArray = input.split(" ");
inputArray.shift();
message = inputArray.join(" ");
axios.get('https://api.vhtear.com/jadwalsholat?query='+buku2+'&apikey=AW62938KK46292gJ73639h')
.then(res => {
//console.log(res.data.result.list);
ctx.reply("Surah : "+res.data.result.surah+"\nQuran : "+res.data.result.quran)
}).catch(e => {
console.log(e);
})
})
/*****************[ selesai udah segitu aja ]************/
//maaf kalau sedikit
//hahhh.....
/////////////////////////////////////////////////////////
bot.hears('F my live', (ctx) => {
ctx.reply("Please waitt...")
axios.get('https://tobz-api.herokuapp.com/api/randomfmylife?apikey=BotWeA')
.then(res => {
//console.log(res);
ctx.reply("Fmylife : "+res.data.result)
}).catch(e => {
console.log(e);
})
})
bot.hears('Jadwal Tv Now', (ctx) => {
ctx.reply("Please waitt...")
axios.get('http://docs-jojo.herokuapp.com/api/jadwaltvnow')
.then(res => {
//console.log(res.data.result);
ctx.reply("Jam : "+res.data.result.jam+"\nJadwal : \n"+res.data.result.jadwalTV)
}).catch(e => {
console.log(e);
})
})
bot.hears('Most view film', (ctx) => {
ctx.reply("Please waitt...")
axios.get('http://docs-jojo.herokuapp.com/api/mostviewfilm')
.then(res => {
//console.log(res.data.result);
ctx.reply(res.data.result)
}).catch(e => {
console.log(e);
})
})
bot.hears('ML hero list', (ctx) => {
ctx.reply(hero)
.catch(e => {
console.log(e);
})
})
bot.hears('Puisi image', (ctx) => {
ctx.reply("Please waitt...")
ctx.replyWithPhoto('https://api.vhtear.com/puisi_image&apikey=AW62938KK46292gJ73639h')
})
bot.hears('Random cat', (ctx) => {
ctx.reply("Please waitt...")
axios.get('https://aws.random.cat/meow')
.then(res => {
//console.log(res.data.result);
ctx.replyWithPhoto(res.data.file)
}).catch(e => {
console.log(e);
})
})
bot.command('cat', (ctx, args) => {
let input = ctx.message.text;
let inputArray = input.split(" ");
inputArray.shift();
message = inputArray.join(" ");
//console.log(message)
ctx.replyWithPhoto('https://cataas.com/cat/says/'+message)
})
bot.command('kbbi', (ctx, args) => {
let input = ctx.message.text;
let inputArray = input.split(" ");
inputArray.shift();
message = inputArray.join(" ");
//console.log
axios.get('https://api.vhtear.com/kbbi?query='+message+'&apikey=AW62938KK46292gJ73639h')
.then(res => {
//console.log(res.data.search);
ctx.reply("Hasil : \n"+res.data.result.hasil)
})
}) //ada yang bisa bantu ini ngak ? yang ngrti helep dong saya ngak terlalu bisa ngoding javascript soalnya
bot.hears('Koin', (ctx) => {
ctx.reply("Please Wait....")
ctx.replyWithPhoto('https://i.ibb.co/YTWZrZV/2003-indonesia-500-rupiah-copy.png')
})
/*bot.hears('INU', (ctx) => {
ctx.reply("Please Wait....")
const list = ["https://cdn.shibe.online/shibes/247d0ac978c9de9d9b66d72dbdc65f2dac64781d.jpg","https://cdn.shibe.online/shibes/1cf322acb7d74308995b04ea5eae7b520e0eae76.jpg","https://cdn.shibe.online/shibes/1ce955c3e49ae437dab68c09cf45297d68773adf.jpg","https://cdn.shibe.online/shibes/ec02bee661a797518d37098ab9ad0c02da0b05c3.jpg","https://cdn.shibe.online/shibes/1e6102253b51fbc116b887e3d3cde7b5c5083542.jpg","https://cdn.shibe.online/shibes/f0c07a7205d95577861eee382b4c8899ac620351.jpg","https://cdn.shibe.online/shibes/3eaf3b7427e2d375f09fc883f94fa8a6d4178a0a.jpg","https://cdn.shibe.online/shibes/c8b9fcfde23aee8d179c4c6f34d34fa41dfaffbf.jpg","https://cdn.shibe.online/shibes/55f298bc16017ed0aeae952031f0972b31c959cb.jpg","https://cdn.shibe.online/shibes/2d5dfe2b0170d5de6c8bc8a24b8ad72449fbf6f6.jpg","https://cdn.shibe.online/shibes/e9437de45e7cddd7d6c13299255e06f0f1d40918.jpg","https://cdn.shibe.online/shibes/6c32141a0d5d089971d99e51fd74207ff10751e7.jpg","https://cdn.shibe.online/shibes/028056c9f23ff40bc749a95cc7da7a4bb734e908.jpg","https://cdn.shibe.online/shibes/4fb0c8b74dbc7653e75ec1da597f0e7ac95fe788.jpg","https://cdn.shibe.online/shibes/125563d2ab4e520aaf27214483e765db9147dcb3.jpg","https://cdn.shibe.online/shibes/ea5258fad62cebe1fedcd8ec95776d6a9447698c.jpg","https://cdn.shibe.online/shibes/5ef2c83c2917e2f944910cb4a9a9b441d135f875.jpg","https://cdn.shibe.online/shibes/6d124364f02944300ae4f927b181733390edf64e.jpg","https://cdn.shibe.online/shibes/92213f0c406787acd4be252edb5e27c7e4f7a430.jpg","https://cdn.shibe.online/shibes/40fda0fd3d329be0d92dd7e436faa80db13c5017.jpg","https://cdn.shibe.online/shibes/e5c085fc427528fee7d4c3935ff4cd79af834a82.jpg","https://cdn.shibe.online/shibes/f83fa32c0da893163321b5cccab024172ddbade1.jpg","https://cdn.shibe.online/shibes/4aa2459b7f411919bf8df1991fa114e47b802957.jpg","https://cdn.shibe.online/shibes/2ef54e174f13e6aa21bb8be3c7aec2fdac6a442f.jpg","https://cdn.shibe.online/shibes/fa97547e670f23440608f333f8ec382a75ba5d94.jpg","https://cdn.shibe.online/shibes/fb1b7150ed8eb4ffa3b0e61ba47546dd6ee7d0dc.jpg","https://cdn.shibe.online/shibes/abf9fb41d914140a75d8bf8e05e4049e0a966c68.jpg","https://cdn.shibe.online/shibes/f63e3abe54c71cc0d0c567ebe8bce198589ae145.jpg","https://cdn.shibe.online/shibes/4c27b7b2395a5d051b00691cc4195ef286abf9e1.jpg","https://cdn.shibe.online/shibes/00df02e302eac0676bb03f41f4adf2b32418bac8.jpg","https://cdn.shibe.online/shibes/4deaac9baec39e8a93889a84257338ebb89eca50.jpg","https://cdn.shibe.online/shibes/199f8513d34901b0b20a33758e6ee2d768634ebb.jpg","https://cdn.shibe.online/shibes/f3efbf7a77e5797a72997869e8e2eaa9efcdceb5.jpg","https://cdn.shibe.online/shibes/39a20ccc9cdc17ea27f08643b019734453016e68.jpg","https://cdn.shibe.online/shibes/e67dea458b62cf3daa4b1e2b53a25405760af478.jpg","https://cdn.shibe.online/shibes/0a892f6554c18c8bcdab4ef7adec1387c76c6812.jpg","https://cdn.shibe.online/shibes/1b479987674c9b503f32e96e3a6aeca350a07ade.jpg","https://cdn.shibe.online/shibes/0c80fc00d82e09d593669d7cce9e273024ba7db9.jpg","https://cdn.shibe.online/shibes/bbc066183e87457b3143f71121fc9eebc40bf054.jpg","https://cdn.shibe.online/shibes/0932bf77f115057c7308ef70c3de1de7f8e7c646.jpg","https://cdn.shibe.online/shibes/9c87e6bb0f3dc938ce4c453eee176f24636440e0.jpg","https://cdn.shibe.online/shibes/0af1bcb0b13edf5e9b773e34e54dfceec8fa5849.jpg","https://cdn.shibe.online/shibes/32cf3f6eac4673d2e00f7360753c3f48ed53c650.jpg","https://cdn.shibe.online/shibes/af94d8eeb0f06a0fa06f090f404e3bbe86967949.jpg","https://cdn.shibe.online/shibes/4b55e826553b173c04c6f17aca8b0d2042d309fb.jpg","https://cdn.shibe.online/shibes/a0e53593393b6c724956f9abe0abb112f7506b7b.jpg","https://cdn.shibe.online/shibes/7eba25846f69b01ec04de1cae9fed4b45c203e87.jpg","https://cdn.shibe.online/shibes/fec6620d74bcb17b210e2cedca72547a332030d0.jpg","https://cdn.shibe.online/shibes/26cf6be03456a2609963d8fcf52cc3746fcb222c.jpg","https://cdn.shibe.online/shibes/c41b5da03ad74b08b7919afc6caf2dd345b3e591.jpg","https://cdn.shibe.online/shibes/7a9997f817ccdabac11d1f51fac563242658d654.jpg","https://cdn.shibe.online/shibes/7221241bad7da783c3c4d84cfedbeb21b9e4deea.jpg","https://cdn.shibe.online/shibes/283829584e6425421059c57d001c91b9dc86f33b.jpg","https://cdn.shibe.online/shibes/5145c9d3c3603c9e626585cce8cffdfcac081b31.jpg","https://cdn.shibe.online/shibes/b359c891e39994af83cf45738b28e499cb8ffe74.jpg","https://cdn.shibe.online/shibes/0b77f74a5d9afaa4b5094b28a6f3ee60efcb3874.jpg","https://cdn.shibe.online/shibes/adccfdf7d4d3332186c62ed8eb254a49b889c6f9.jpg","https://cdn.shibe.online/shibes/3aac69180f777512d5dabd33b09f531b7a845331.jpg","https://cdn.shibe.online/shibes/1d25e4f592db83039585fa480676687861498db8.jpg","https://cdn.shibe.online/shibes/d8349a2436420cf5a89a0010e91bf8dfbdd9d1cc.jpg","https://cdn.shibe.online/shibes/eb465ef1906dccd215e7a243b146c19e1af66c67.jpg","https://cdn.shibe.online/shibes/3d14e3c32863195869e7a8ba22229f457780008b.jpg","https://cdn.shibe.online/shibes/79cedc1a08302056f9819f39dcdf8eb4209551a3.jpg","https://cdn.shibe.online/shibes/4440aa827f88c04baa9c946f72fc688a34173581.jpg","https://cdn.shibe.online/shibes/94ea4a2d4b9cb852e9c1ff599f6a4acfa41a0c55.jpg","https://cdn.shibe.online/shibes/f4478196e441aef0ada61bbebe96ac9a573b2e5d.jpg","https://cdn.shibe.online/shibes/96d4db7c073526a35c626fc7518800586fd4ce67.jpg","https://cdn.shibe.online/shibes/196f3ed10ee98557328c7b5db98ac4a539224927.jpg","https://cdn.shibe.online/shibes/d12b07349029ca015d555849bcbd564d8b69fdbf.jpg","https://cdn.shibe.online/shibes/80fba84353000476400a9849da045611a590c79f.jpg","https://cdn.shibe.online/shibes/94cb90933e179375608c5c58b3d8658ef136ad3c.jpg","https://cdn.shibe.online/shibes/8447e67b5d622ef0593485316b0c87940a0ef435.jpg","https://cdn.shibe.online/shibes/c39a1d83ad44d2427fc8090298c1062d1d849f7e.jpg","https://cdn.shibe.online/shibes/6f38b9b5b8dbf187f6e3313d6e7583ec3b942472.jpg","https://cdn.shibe.online/shibes/81a2cbb9a91c6b1d55dcc702cd3f9cfd9a111cae.jpg","https://cdn.shibe.online/shibes/f1f6ed56c814bd939645138b8e195ff392dfd799.jpg","https://cdn.shibe.online/shibes/204a4c43cfad1cdc1b76cccb4b9a6dcb4a5246d8.jpg","https://cdn.shibe.online/shibes/9f34919b6154a88afc7d001c9d5f79b2e465806f.jpg","https://cdn.shibe.online/shibes/6f556a64a4885186331747c432c4ef4820620d14.jpg","https://cdn.shibe.online/shibes/bbd18ae7aaf976f745bc3dff46b49641313c26a9.jpg","https://cdn.shibe.online/shibes/6a2b286a28183267fca2200d7c677eba73b1217d.jpg","https://cdn.shibe.online/shibes/06767701966ed64fa7eff2d8d9e018e9f10487ee.jpg","https://cdn.shibe.online/shibes/7aafa4880b15b8f75d916b31485458b4a8d96815.jpg","https://cdn.shibe.online/shibes/b501169755bcf5c1eca874ab116a2802b6e51a2e.jpg","https://cdn.shibe.online/shibes/a8989bad101f35cf94213f17968c33c3031c16fc.jpg","https://cdn.shibe.online/shibes/f5d78feb3baa0835056f15ff9ced8e3c32bb07e8.jpg","https://cdn.shibe.online/shibes/75db0c76e86fbcf81d3946104c619a7950e62783.jpg","https://cdn.shibe.online/shibes/8ac387d1b252595bbd0723a1995f17405386b794.jpg","https://cdn.shibe.online/shibes/4379491ef4662faa178f791cc592b52653fb24b3.jpg","https://cdn.shibe.online/shibes/4caeee5f80add8c3db9990663a356e4eec12fc0a.jpg","https://cdn.shibe.online/shibes/99ef30ea8bb6064129da36e5673649e957cc76c0.jpg","https://cdn.shibe.online/shibes/aeac6a5b0a07a00fba0ba953af27734d2361fc10.jpg","https://cdn.shibe.online/shibes/9a217cfa377cc50dd8465d251731be05559b2142.jpg","https://cdn.shibe.online/shibes/65f6047d8e1d247af353532db018b08a928fd62a.jpg","https://cdn.shibe.online/shibes/fcead395cbf330b02978f9463ac125074ac87ab4.jpg","https://cdn.shibe.online/shibes/79451dc808a3a73f99c339f485c2bde833380af0.jpg","https://cdn.shibe.online/shibes/bedf90869797983017f764165a5d97a630b7054b.jpg","https://cdn.shibe.online/shibes/dd20e5801badd797513729a3645c502ae4629247.jpg","https://cdn.shibe.online/shibes/88361ee50b544cb1623cb259bcf07b9850183e65.jpg","https://cdn.shibe.online/shibes/0ebcfd98e8aa61c048968cb37f66a2b5d9d54d4b.jpg"]
ctx.replyWithPhoto(list)
})*/
bot.hears('Dadu', (ctx) => {
ctx.reply("Silahkan Pilih angka yang anda inginkan...",
{