-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathindex.js
514 lines (493 loc) · 34.9 KB
/
index.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
const { create, decryptMedia } = require('@open-wa/wa-automate')
const moment = require('moment')
const {tiktok, instagram, twitter, facebook} = require('./lib/dl-video')
const urlShortener = require('./lib/shortener')
const color = require("./lib/color")
const malScraper = require('mal-scraper')
const axios = require('axios')
const { video } = require('tiktok-scraper')
var info = require('./info')
var culture_code; //IGNORE THESE LINES THESE LINES ARE ONLY FOR MY FELLO MEN OF CULTURE DEVs
var sauce_Yaknow = "https://nhentai.net/g/" + culture_code; // IGNORE THESE LINES
var quote_Array = ["“You know you’re in love when you can’t fall asleep because reality is finally better than your dreams.”– Dr. Suess", "“I’m selfish, impatient and a little insecure. I make mistakes, I am out of control and at times hard to handle. But if you can’t handle me at my worst, then you sure as hell don’t deserve me at my best.”– Marilyn Monroe", "“Get busy living or get busy dying.”– Stephen King", '"Time moves in one direction, memory in another." \n~ William Gibson', '"The sky above the port was the color of television, tuned to a dead station." \n~ William Gibson', '"Before you diagnose yourself with depression or low self-esteem, first make sure that you are not, in fact, just surrounded by assholes." \n~ William Gibson', '"When you want to know how things really work, study them when they\'re coming apart." \n~ William Gibson', '"Anything that can be done to a rat can be done to a human being. And we can do most anything to rats. This is a hard thing to think about, but it\'s the truth. It won\'t go away because we cover our eyes. THAT is cyberpunk." \n~ Bruce Sterling', '"Japan is a wonderful country, a strange mixture of ancient mystique and cyberpunk saturation. It\'s a monolith of society\'s achievements, yet maintains a foothold in the past, creating an amazing backdrop for tourings and natives alive. Japan captures the imagination like no other. You never feel quite so far from home as you do in Japan, yet there are no other people on the planet that make you feel as comfortable." \n~ Corey Taylor', '“Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do.” \n– Mark Twain', '“When I dare to be powerful – to use my strength in the service of my vision, then it becomes less and less important whether I am afraid.” \n– Audre Lorde', '“Those who dare to fail miserably can achieve greatly.” \n– John F. Kennedy', '“Love yourself first and everything else falls into line. You really have to love yourself to get anything done in this world.” \n– Lucille Ball', '“It is our choices, that show what we truly are, far more than our abilities.”\n– J. K Rowling', '“If you want to be happy, be.” \n– Leo Tolstoy', '“If you want to live a happy life, tie it to a goal, not to people or things.” \n– Albert Einstein', '“I never knew how to worship until I knew how to love.” \n– Henry Ward Beecher', '“Life is trying things to see if they work.” \n– Ray Bradbury', '“If life were predictable it would cease to be life, and be without flavor.” \n– Eleanor Roosevelt', '“Yesterday is history, tomorrow is a mystery, today is a gift of God, which is why we call it the present.” \n– Bil Keane', '“You miss 100 percent of the shots you never take.” \n– Wayne Gretzky', '“Always forgive your enemies; nothing annoys them so much.” \n– Oscar Wilde']
const serverOption = {
headless: true,
qrRefreshS: 20,
qrTimeout: 0,
authTimeout: 0,
autoRefresh: true,
cacheEnabled: false,
chromiumArgs: [
'--no-sandbox',
'--disable-setuid-sandbox'
]
}
const opsys = process.platform;
if (opsys === "win32" || opsys === "win64") {
serverOption['executablePath'] = 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe';
} else if (opsys === "linux") {
serverOption['browserRevision'] = '737027';
} else if (opsys === "darwin") {
serverOption['executablePath'] = '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome';
}
const startServer = async (from) => {
create('Imperial', serverOption)
.then(client => {
console.log('[DEV] Ban Takahiro')
console.log('[SERVER] Server Started!')
// Force it to keep the current session
client.onStateChanged(state => {
console.log('[Client State]', state)
if (state === 'CONFLICT') client.forceRefocus()
})
client.onMessage((message) => {
msgHandler(client, message)
})
})
}
async function msgHandler (client, message) {
try {
const { type, body, id, from, t, sender, isGroupMsg, chat, caption, isMedia, mimetype, quotedMsg } = message
const { pushname } = sender
const { formattedTitle } = chat
const time = moment(t * 1000).format('DD/MM HH:mm:ss')
const commands = ['#menu','#help','#sticker','#sauceyaknow','#Sauceyaknow','#codesyaknow' ,'#Codesyaknow', '#TnC', '#You are idiot', '#you are idiot', '#you are baka', '#you are bakka', '#YOU ARE IDIOT', '#You are bakka','#quotes', "#Quotes", '#stiker', '#hello','#info','#commands','#God','#Thank you','#I love you','#Seasonal anime','#anime','#Anime','fuck','Fuck','sex','Sex','nudes','Link','Zelda','#Best girl','#S-1','#Do you love me','#tsundere','#Tsundere','Ora ora ora ora','ora ora ora ora','Ora Ora Ora Ora','Muda Muda Muda Muda','muda muda muda muda','Muda muda muda muda','yo','freedom','Freedom','#Zelda Timeline','#Botw','I love Rem','i love rem','I Love Rem','i love Rem','El Psy Congroo','Tuturu','Indeed','Can you beat Goku though','Se no','Mou','Kokoro','#neko','#wallpaper','#source','#sauce','Heave ho','Heave ho!','Make me a coffee','#Mystery Video','Never gonna','never gonna','never gonna run around','#Pokemon','#waifu','#waifu','Mily x Yagu','#Pokewall','#pokewall','#wiki','Prepare for trouble','To protect the world from devastation','To denounce the evils of truth and love','#R','Team Rocket blasts off at the speed of light','#Emilia','#emilia','#sauce','#Sauce','#Rem','#rem', '#tiktok', '#ig', '#instagram', '#twt', '#twitter', '#fb', '#facebook','#grouplink','#meme','#covid','#sr','#SR','#Sr']
const cmds = commands.map(x => x + '\\b').join('|')
const cmd = type === 'chat' ? body.match(new RegExp(cmds, 'gi')) : type === 'image' && caption ? caption.match(new RegExp(cmds, 'gi')) : ''
if (cmd) {
if (!isGroupMsg) console.log(color('[EXEC]'), color(time, 'yellow'), color(cmd[0]), 'from', color(pushname))
if (isGroupMsg) console.log(color('[EXEC]'), color(time, 'yellow'), color(cmd[0]), 'from', color(pushname), 'in', color(formattedTitle))
const args = body.trim().split(' ')
const isUrl = new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/gi);
switch (cmd[0]) {
case '#menu':
case '#help':
client.sendText(from,'👋️Hi there, I\'m Emilia! \n\nPrefix = #\n\nUsable Commands!✨\n\nCMD: #sticker\nDescription: Converts images into stickers\n\nCMD: #neko\nDescription Returns a random cat image\n\nCMD: #meme\nDescription: Displays and anime meme from r\/wholesomeanimememes\n\nCMD: #sr <subreddit>\nDescription: Returns a post from the given subreddit\n\nCMD: #covid <country name>\nDescription: Displays the live stats Covid-19 of the given country\n\nCMD: #quotes\nDescription: Returns a quote that will either give you existential crises or wisdom\n\nCMD #pokemon\nDescription: Displays picture of a random pokemon\n \nCMD: #wallpaper [Beta]\nDisplays a random anime wallpapers\n\n\nCMD: #Seasonal anime\nDescription: Returns a list of seasonal animes\n\nCMD: #info\nDescription: Displays the information\n\n CMD: #TnC\nDescription: Displays the Terms and Conditions\n\nThere are many hidden and fun keywords ;)\n\nIf yore having any trouble with the bot, please join our support group and state your issue\n\n\nSupport: https:\/\/chat.whatsapp.com\/CQc92njMrOpI0sBbYYSoAr\n\n\nHope you have a great day!✨')
break;
case '#hello':
await client.simulateTyping(from, true);
client.sendText(from, 'Hello there, How can I help?');
await client.simulateTyping(from, false);
break;
case '#grouplink':
if (!isGroupMsg) {
const inviteLink = await client.getGroupInviteLink(chat.id)
client.sendText(from, inviteLink)
}
break;
case 'Make me a coffee':
client.sendText(from, 'Make it yourself, lazy baka *hmph*');
break;
case '#I love you':
client.sendText(from, 'T-Thanks I-I mean *looks away blushing*');
break;
case '#God':
client.sendText(from, '@Hooman|Neko is God');
case '#Do you love me?':
client.sendText(from, 'U-Uh... n-no! *blushes* O-Of course not, bakka!');
break;
case '#Fuck' :
case '#fuck' :
client.sendText(from, 'Hmph! *crosses arms* Take that back!');
break;
case '#sex':
case '#Sex':
case '#nudes':
case '#porn':
client.sendText(from, 'Go home, you are horny!');
break;
break
case '#Seasonal anime':
break;
case 'Se no':
client.sendText(from, 'Demo sonnan ja dame')
break;
case 'Mily x Yagu':
client.sendText(from, 'Mily x Yagu Forever✨️')
break;
case 'Mou':
client.sendText(from, 'sonnan ja hora')
break;
case 'Kokoro':
client.sendText(from, 'wa shinka suru yo Motto motto')
break;
case '#Best girl':
client.sendText(from, '*Blushes*')
break;
case 'Zelda' :
client.sendText(from, 'Link')
break;
case 'Indeed' :
client.sendText(from, 'Pathetic')
break;
case 'Link' :
client.sendText(from, 'Zelda')
break;
case '#anime':
if (args.length >=5) {
const a1 = args[1]
const a2 = args[2]
const a3 = args[3]
const a4 = args[4]
const { title, picture, score, synopsis, episodes, aired, rating, status } = await malScraper.getInfoFromName(a1+'-'+a2+'-'+a3+'-'+a4)
await client.sendFileFromUrl(from, `${picture}`, 'Anime.png', '⛩️Title:'+`${title}`+'\n\n🎼️Score:'+`${score}`+'\n\n📙️Status:'+`${status}`+'\n\n🖼️Episodes:'+`${episodes}`+'\n\n✨️Rating:'+`${rating}`+'\n\n🌠️Synopsis:'+`${synopsis}`+'\n\n📆️Aired:'+`${aired}`+'.')
} else if (args.length >=4) {
const a1 = args[1]
const a2 = args[2]
const a3 = args[3]
const { title, picture, score, synopsis, episodes, aired, rating, status } = await malScraper.getInfoFromName(a1+'-'+a2+'-'+a3)
await client.sendFileFromUrl(from, `${picture}`, 'Anime.png', '⛩️Title:'+`${title}`+'\n\n🎼️Score:'+`${score}`+'\n\n📙️Status:'+`${status}`+'\n\n🖼️Episodes:'+`${episodes}`+'\n\n✨️Rating:'+`${rating}`+'\n\n🌠️Synopsis:'+`${synopsis}`+'\n\n📆️Aired:'+`${aired}`+'.')
} else if (args.length >=3) {
const a1 = args[1]
const a2 = args[2]
const { title, picture, score, synopsis, episodes, aired, rating, status } = await malScraper.getInfoFromName(a1+'-'+a2)
await client.sendFileFromUrl(from, `${picture}`, 'Anime.png', '⛩️Title:'+`${title}`+'\n\n🎼️Score:'+`${score}`+'\n\n📙️Status:'+`${status}`+'\n\n🖼️Episodes:'+`${episodes}`+'\n\n✨️Rating:'+`${rating}`+'\n\n🌠️Synopsis:'+`${synopsis}`+'\n\n📆️Aired:'+`${aired}`+'.')
} else if (args.length >=2) {
const animename = args[1]
malScraper.getInfoFromName(animename)
.then((data) => console.log(data))
.catch((err) => console.log(err))
const { title, picture, score, synopsis, episodes, aired, rating, status } = await malScraper.getInfoFromName(animename)
await client.sendFileFromUrl(from, `${picture}`, 'Anime.png', '⛩️Title:'+`${title}`+'\n\n🎼️Score:'+`${score}`+'\n\n📙️Status:'+`${status}`+'\n\n🖼️Episodes:'+`${episodes}`+'\n\n✨️Rating:'+`${rating}`+'\n\n🌠️Synopsis:'+`${synopsis}`+'\n\n📆️Aired:'+`${aired}`+'.')
}
break;
case '#wiki':
if (args.length >=2) {
const query = args[1]
wiki()
.page(query)
.then(page => page.info())
.then(console.log); // Bruce Wayne
}
break
case 'Can you beat Goku though' :
client.sendText(from, '*I can and I will*')
break;
case '#pokewall' :
case '#Pokewall' :
q9 = Math.floor(Math.random() * 199) + 1
client.sendFileFromUrl(from, 'http://localhost:8082/Pokemon/wallpapersanimesv.blogspot.com-('+q9+').jpg', 'Pokemon.jpg','Here is your Pokemon Wallpaper')
break
case '#Emilia' :
case '#emilia' :
q11 = Math.floor(Math.random() * 21) + 10
client.sendFileFromUrl(from, 'http://0.0.0.0:8082/Emilia/'+q11+'.png', 'Emilia.png','Emilia ✨️')
break
case '#Rem' :
case '#rem' :
q12 = Math.floor(Math.random() * 9) + 1
client.sendFileFromUrl(from, 'http://0.0.0.0:8082/Rem/'+q12+'.png', 'Rem.png','Rem ✨️')
break
case 'freedom' :
client.sendFileFromUrl(from, 'https://i.ibb.co/6J9ST0d/IMG-20200731-WA0791.jpg','freedom.jpg','...')
break;
case '#Botw' :
client.sendFileFromUrl(from, 'https://mocah.org/uploads/posts/197514-princess-zelda-2350x1175.png','BOTW.jpg','...')
break;
case '#Zelda Timeline' :
client.sendFileFromUrl(from, 'https://gamepedia.cursecdn.com/zelda_gamepedia_en/b/b8/E_Timeline.png','Zelda Timeline.png','...')
break;
case '#S-1':
client.sendText(from, 'Connection Status = Active')
case '#meme':
case '#Meme':
const response = await axios.get('https://meme-api.herokuapp.com/gimme/wholesomeanimemes');
const { postlink, title, subreddit, url, nsfw, spoiler } = response.data
await client.sendFileFromUrl(from, `${url}`, 'meme.jpg', `${title}`)
break;
case '#sr':
case '#Sr':
case '#SR':
if (args.length >=4) {
const sr = args[1]
const rs = args[2]
const tr = args[3]
const response = await axios.get('https://meme-api.herokuapp.com/gimme/'+sr+'_'+rs+'_'+tr+'/');
const { postlink, title, subreddit, url, nsfw, spoiler } = response.data
await client.sendFileFromUrl(from, `${url}`, 'Reddit.jpg', `${title}`)
} else if (args.length >=3) {
const sr = args[1]
const rs = args[2]
const response = await axios.get('https://meme-api.herokuapp.com/gimme/'+sr+'_'+rs+'/');
const { postlink, title, subreddit, url, nsfw, spoiler } = response.data
await client.sendFileFromUrl(from, `${url}`, 'Reddit.jpg', `${title}`)
} else if (args.length >=2) {
const sr = args[1]
const response = await axios.get('https://meme-api.herokuapp.com/gimme/'+sr+'/');
const { postlink, title, subreddit, url, nsfw, spoiler } = response.data
await client.sendFileFromUrl(from, `${url}`, 'Reddit.jpg', `${title}`)
}
break;
case '#covid':
case '#Covid':
if (args.length >=2) {
const cn = args[1]
const response = await axios.get('https://coronavirus-19-api.herokuapp.com/countries/'+cn+'/');
const { cases, todayCases, deaths, todayDeaths, recovered, active } = response.data
await client.sendText(from, '🌎️Covid Info🌍️\n\n✨️Total Cases: '+`${cases}`+'\n📆️Today\'s Cases: '+`${todayCases}`+'\n☣️Total Deaths: '+`${deaths}`+'\n☢️Today\'s Deaths: '+`${todayDeaths}`+'\n⛩️Active Cases: '+`${active}`+'.')
}
break;
case 'El Psy Congroo':
client.sendFileFromUrl(from, 'https://i.ibb.co/s9Rw8hN/index.jpg','Steins;Gate.jpg','El Psy Congroo')
break;
case '#Do you love me':
client.sendText(from, 'U-Uh... n-no! *blushes* O-Of course not, idiot!')
break;
case 'I love Rem' :
case 'i love rem' :
case 'I love rem' :
case 'I Love Rem' :
client.sendText(from, 'Who is Rem?');
break;
case 'yo':
client.sendText(from, 'Hiya *High-fives*');
break;
case 'Never gonna':
client.sendText(from, 'give you up');
break;
case 'never gonna':
client.sendText(from, 'Let you down');
break;
case 'Never gonna run around':
client.sendText(from, 'and dessert you');
break;
case '#Waifu':
case '#waifu':
q8 = q2 = Math.floor(Math.random() * 98) + 10;
client.sendFileFromUrl(from, 'http://randomwaifu.altervista.org/images/00'+q8+'.png', 'Waifu.png', 'How is she?'); // UwU)/ Working Fine
break;
case 'Heave ho':
case 'Heave ho!':
client.sendFileFromUrl(from, 'https://i.ibb.co/KjJx5ps/Whats-App-Image-2020-08-01-at-16-36-10.jpg','Soran.jpg','*Soran Soran*');
break;
case '#neko':
q2 = Math.floor(Math.random() * 900) + 300;
q3 = Math.floor(Math.random() * 900) + 300;
client.sendFileFromUrl(from, 'http://placekitten.com/'+q3+'/'+q2, 'neko.png','Neko ');
break;
case '#Pokemon':
case '#pokemon':
q7 = Math.floor(Math.random() * 890) + 1;
client.sendFileFromUrl(from, 'https://assets.pokemon.com/assets/cms2/img/pokedex/full/'+q7+'.png','Pokemon.png',);
break;
case '#wallpaper' :
q4 = Math.floor(Math.random() * 150) + 1;
client.sendFileFromUrl(from, 'http://localhost:8082/150%20Wallpapers/Wallpaper---'+q4+'.jpg','Anime.jpg','Here is your wallpaper');
break;
case '#Tsundere' :
case '#tsundere' :
client.sendText(from, 'I am not a tsundere, baka!');
break;
case '#Mystery Video':
client.sendText(from, 'https://youtu.be/dQw4w9WgXcQ');
break;
case 'sex' :
case 'Sex' :
case 'nudes' :
case 'porn' :
client.sendText(from, 'Go home, you are horny!')
break;
case 'ora ora ora ora' :
case 'Ora Ora Ora Ora' :
case 'Ora ora ora ora' :
client.sendText(from, 'Muda Muda Muda Muda')
break;
case 'Muda Muda Muda Muda' :
case 'Muda muda muda muda' :
case 'muda muda muda muda' :
client.sendText(from, 'Ora Ora Ora Ora')
break;
case '#commands':
client.sendText(from, '👋️Hi there, I\'m Emilia! \n\nPrefix = #\n\nUsable Commands!✨\n\nCMD: #sticker\nDescription: Converts images into stickers\n\nCMD: #neko\nDescription Returns a random cat image\n\nCMD: #meme\nDescription: Displays and anime meme from r\/wholesomeanimememes\n\nCMD: #sr <subreddit>\nDescription: Returns a post from the given subreddit\n\nCMD: #covid <country name>\nDescription: Displays the live stats Covid-19 of the given country\n\nCMD: #quotes\nDescription: Returns a quote that will either give you existential crises or wisdom\n\nCMD #pokemon\nDescription: Displays picture of a random pokemon\n \nCMD: #wallpaper [Beta]\nDisplays a random anime wallpapers\n\n\nCMD: #Seasonal anime\nDescription: Returns a list of seasonal animes\n\nCMD: #info\nDescription: Displays the information\n\n CMD: #TnC\nDescription: Displays the Terms and Conditions\n\nThere are many hidden and fun keywords ;)\n\nIf yore having any trouble with the bot, please join our support group and state your issue\n\n\nSupport: https:\/\/chat.whatsapp.com\/CQc92njMrOpI0sBbYYSoAr\n\n\nHope you have a great day!✨')
break;
case '#Seasonal anime':
client.sendText(from, 'Summer 2020 \n Re:Zero kara Hajimeru Isekai Seikatsu 2nd Season \n Yahari Ore no Seishun Love Comedy wa Machigatteiru. Kan \n The God of High School \n Sword Art Online: Alicization - War of Underworld 2nd Season \n Enen no Shouboutai: Ni no Shou \n Maou Gakuin no Futekigousha: Shijou Saikyou no Maou no Shiso, Tensei shite Shison-tachi no Gakkou e \n Kanojo, Okarishimasu \n Deca-Dence \n Uzaki-chan wa Asobitai! \n Monster Musume no Oishasan')
break;
case '#Thank you':
client.sendText(from, 'Whatever... *smiles*')
break;
case '#TnC':
client.sendText(from, 'This is an open-source program written in Javascript. \n \nBy using the bot you agreeing to our Terms and Conditions \n \n We do not store any of your data in our servers. We are not responsebale for the stickers you create using the bot. The wallpapers and other pictues are not hosted on our servers (expect the pokemon ones).\nUse #License to see the enitire license argreement ')
break;
case '#info':
client.sendText(from, '👋️Hi there, I\'m Emilia\nThis project is open source, built using Javascript || Node.js and is available at GitHub https:\/\/bit.ly\/39Ld2L8. If you are willing to contribute to our project please refer to the mentioned url.\n \n\nDevelopers✨\n \n _Alen Yohannan_ \n_Somnath Das_\n\nContributors💫\n\n_Miliana Blue_\n_Aman Sakuya_')
break;
case 'Make me a coffee':
await client.simulateTyping(from, true)
client.sendText(from, 'Do it yourself, lazy ass *hmph*')
await client.simulateTyping(from, false)
break;
case '#You are idiot':
case '#you are idiot':
client.sendText(from, 'Shut up, douchebag');
break;
case '#you are baka':
client.sendText(from, "I'll smack on your gut so hard that you will cry for mommy!")
break;
case '#You are bakka':
case '#you are bakka':
client.sendText(from, 'I believe hell will wipe itself when you will go there!');
break;
case 'YOU ARE IDIOT':
client.sendText(from, 'Shuddup! Aho!!!!!');
break;
case '#quotes':
case '#Quotes':
a2 = Math.floor(Math.random() * 22);
client.sendText(from, quote_Array[a2]);
break;
//MAKE SURE TO USE ; at the end of statement :)
case 'Prepare for trouble' :
client.sendText(from, 'And make it double!')
break;
case 'To protect the world from devastation':
client.sendText(from, 'To unite all peoples within our nation!')
break
case 'To denounce the evils of truth and love':
client.sendText(from, 'To extend our reach to the stars above!')
break;
case '#R':
client.sendText(from, 'Emilia')
break
case 'Team Rocket blasts off at the speed of light':
client.sendText(from, 'Surrender now, or prepare to fight!')
break;
case '#codesyaknow':
case '#Codesyaknow': //Culture uWu
var culture_code;
culture_code = Math.floor(Math.random() * 100001) + 10000;
client.sendText(from, "Here you go b-ba-baka \n" + culture_code);
break;
case '#Sauceyaknow':
case '#sauceyaknow': //Keep this hidden in depth of codes to prevent mass extinction of humans :)
var culture_code;
culture_code = Math.floor(Math.random() * 100001) + 10000;
var sauce_Yaknow = "https://nhentai.net/g/" + culture_code;
client.sendText(from, sauce_Yaknow);
break;
case '#sticker':
case '#stiker':
if (isMedia) {
const mediaData = await decryptMedia(message)
const imageBase64 = `data:${mimetype};base64,${mediaData.toString('base64')}`
await client.sendImageAsSticker(from, imageBase64)
} else if (quotedMsg && quotedMsg.type == 'image') {
const mediaData = await decryptMedia(quotedMsg)
const imageBase64 = `data:${quotedMsg.mimetype};base64,${mediaData.toString('base64')}`
await client.sendImageAsSticker(from, imageBase64)
} else if (args.length == 2) {
const url = args[1]
if (url.match(isUrl)) {
await client.sendStickerfromUrl(from, url, {method: 'get'})
.then(r => { if (!r) client.sendText(from, 'Maaf, link yang kamu kirim tidak memuat gambar.') })
.catch(err => console.log('Caught exception: ', err))
} else {
client.sendText(from, 'Sorry The URL is not valid')
}
} else {
client.sendText(from, 'You did not quote a picture, Baka! To make a sticker, send an image with "#sticker" as caption')
}
break
case '#tiktok':
if (args.length == 2) {
const url = args[1]
if (!url.match(isUrl) && !url.includes('tiktok.com')) return client.sendText(from, 'The URL is not valid')
await tiktok(url)
.then((videoMeta) => {
const filename = videoMeta.authorMeta.name + '.mp4'
const caps = `*Metadata:*\nUsername: ${videoMeta.authorMeta.name} \nMusic: ${videoMeta.musicMeta.musicName} \nView: ${videoMeta.playCount.toLocaleString()} \nLike: ${videoMeta.diggCount.toLocaleString()} \nComment: ${videoMeta.commentCount.toLocaleString()} \nShare: ${videoMeta.shareCount.toLocaleString()} \nCaption: ${videoMeta.text.trim() ? videoMeta.text : '-'} \n\nDonasi: kamu dapat membantuku beli dimsum dengan menyawer melalui https://saweria.co/donate/yogasakti atau mentrakteer melalui https://trakteer.id/red-emperor \nTerimakasih.`
client.sendFileFromUrl(from,videoMeta.url, filename, videoMeta.NoWaterMark ? caps : `...\n\n${caps}`)
.catch(err => console.log('Caught exception: ', err))
}).catch((err) => {
client.sendText(from, 'Error Code 404')
});
}
break
case '#ig':
case '#instagram':
if (args.length == 2) {
const url = args[1]
if (!url.match(isUrl) && !url.includes('instagram.com')) return client.sendText(from, 'The URL is not valid')
instagram(url)
.then(async (videoMeta) => {
const content = []
for (var i = 0; i < videoMeta.length; i++) {
await urlShortener(videoMeta[i].video)
.then((result) => {
console.log('Shortlink: ' + result)
content.push(`${i+1}. ${result}`)
}).catch((err) => {
client.sendText(from, `Error, ` + err)
});
}
client.sendText(from, `Link Download:\n${content.join('\n')} \n\n...`)
}).catch((err) => {
console.error(err)
if (err == 'Not a video') return client.sendText(from, `Not a Video`)
client.sendText(from, `Error, Can't send this video`)
});
}
break
case '#twt':
case '#twitter':
if (args.length == 2) {
const url = args[1]
if (!url.match(isUrl) && !url.includes('twitter.com') || url.includes('t.co')) return client.sendText(from, 'URL is not valid')
twitter(url)
.then(async (videoMeta) => {
try {
if (videoMeta.type == 'video') {
const content = videoMeta.variants.filter(x => x.content_type !== 'application/x-mpegURL').sort((a, b) => b.bitrate - a.bitrate)
const result = await urlShortener(content[0].url)
console.log('Shortlink: ' + result)
client.sendFileFromUrl(from, content[0].url, 'TwitterVideo.mp4', `Link Download: ${result} \n\n...`)
} else if (videoMeta.type == 'photo') {
for (var i = 0; i < videoMeta.variants.length; i++) {
await client.sendFileFromUrl(from, videoMeta.variants[i], videoMeta.variants[i].split('/media/')[1], '')
}
}
} catch (err) {
client.sendText(from, `Error, ` + err)
}
}).catch((err) => {
console.log(err)
client.sendText(from, `Error Code 404`)
});
}
break
case '#fb':
case '#facebook':
if (args.length == 2) {
const url = args[1]
if (!url.match(isUrl) && !url.includes('facebook.com')) return client.sendText(from, 'URL is not valid')
facebook(url)
.then(async (videoMeta) => {
console.log(videoMeta)
try {
const shorthd = videoMeta.hd ? await urlShortener(videoMeta.hd) : '1'
console.log('Shortlink: ' + shorthd)
const shortsd = videoMeta.sd ? await urlShortener(videoMeta.sd) : '2'
console.log('Shortlink: ' + shortsd)
client.sendText(from, `Title: ${videoMeta.title} \nLink Download: \nHD Quality: ${shorthd} \nSD Quality: ${shortsd} \n\n...`)
} catch (err) {
client.sendText(from, `Error, ` + err)
}
})
.catch((err) => {
client.sendText(from, `Error ${err}`)
})
}
break
}
} else {
if (!isGroupMsg) console.log('[RECV]', color(time, 'yellow'), 'Message from', color(pushname))
if (isGroupMsg) console.log('[RECV]', color(time, 'yellow'), 'Message from', color(pushname), 'in', color(formattedTitle))
}
} catch (err) {
console.log(color('[ERROR]', 'red'), err)
}
}
process.on('Something went wrong', function (err) {
console.log('Caught exception: ', err);
});
startServer()