-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
4802 lines (4119 loc) · 221 KB
/
server.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
const http = require('http');
const express = require('express');
const app = express();
app.get("/", (request, response) => {
response.sendStatus(200);
});
app.listen(process.env.PORT);
setInterval(() => {
http.get(`http://a7med8li.glitch.me/`);
}, 280000);
const Discord = require('discord.js');
const client = new Discord.Client();
const moment = require('moment');
const zalgo = require('zalgolize');
const math = require('math-expression-evaluator');
const figlet = require('figlet');
const fs = require('fs');
const ms = require('ms');
const prefix = '-'
client.on('message', msg => {
if (msg.content === 'باك') {
msg.reply('** :wink: وِلِـكُمِـ ﻧَوِرُتْ :sparkling_heart:**');
}
});
client.on('message', msg => {
if (msg.content === 'اهلا') {
msg.reply('**اهلا بيك :heart: **');
}
});
client.on("message", message => {
if(message.content.startsWith(prefix + 'v2min')) {
let args = message.content.split(" ").slice(1);
var nam = args.join(' ');
if(!message.member.hasPermission('ADMINISTRATOR')) return message.channel.send('`ADMINISTRATOR` للأسف هذه الخاصية تحتاج الى ').then(msg => msg.delete(6000))
if (!nam) return message.channel.send(`<@${message.author.id}> يجب عليك ادخال اسم`).then(msg => msg.delete(10000))
message.guild.createChannel(nam, 'voice').then(c => setTimeout(() => c.delete(), 120000))
message.channel.send(`:ballot_box_with_check: TemporarySound : \`${nam}\``).then(c => setTimeout(() => c.edit(`<@${message.author.id}> :stopwatch: انتهى وقت الروم الصوتي`), 120000))
}
});
client.on("message", message => {
if(message.content.startsWith(prefix + "emoji")) {
if(message.author.bot) return;
var emojiid = message.content.split(" ").slice(1).join(" ")
console.log(emojiid)
if(emojiid.length < "18" || emojiid.length > "18" || isNaN(emojiid)) return message.channel.send(`- Usage
${prefix}emoji <EmojiID>`);
else
message.channel.send("This is the emoji that you requested:-",
{
files: [`https://cdn.discordapp.com/emojis/${emojiid}.png`]
})
}
})
client.on("message", message => {
if (message.channel.type === "dm") {
message.channel.startTyping();
setTimeout(() => {
message.channel.stopTyping();
}, Math.random() * (1 - 3) + 1 * 1000);
}
});
const clans = {};
const system = {};
const level = {};
client.on('message',async message => {
if(message.author.bot) return;
if(message.channel.type === 'dm') return;
let args = message.content.split(' ');
let random = Math.floor(Math.random() * 5) + 2;
let author = message.author;
let xpLeft;
let nameClan;
let membersClan = [];
let levelClan = 0;
if(!system[author.id]) system[author.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
if(!level[author.id]) level[author.id] = {level: 1, xp: 1};
level[author.id].xp += (+random);
if(level[author.id].xp >= 300) {
if(level[author.id].xp > 300) xpLeft = level[author.id].xp - 300;
level[author.id] = {
level: level[author.id].level + 1,
xp: xpLeft
};
}
if(message.content.startsWith(prefix + "clan")) {
if(message.content.split(' ')[0] !== `${prefix}clan`) return;
if(!args[1] || args[1] && args[1] === 'info') {
let embed = new Discord.RichEmbed()
.setAuthor('الكلانات', message.author.avatarURL)
.setDescription(`- \`${prefix}clan\`: نظام الكلانات هو نظام شبه مسلي ينمي التفاعل ويمكنك التحكم بالكلان تبعك بشكل كامل
- \`${prefix}clan info\`: لأظهار رسالة الأوامر ( هذه الرسالة ) ء
- \`${prefix}clan create\`: لأنشاء كلان بالأسم الذي تريده
- \`${prefix}clan invite\`: لدعوة شخص ما للكلان تبعك
- \`${prefix}clan join\`: للتقديم على دخول الكلان الذي تريده
- \`${prefix}clan promote\`: لأعطاء شخص بالكلان صلاحيات الادمن ( يتطلب صلاحية الادمن ) ء
- \`${prefix}clan demote\`: لأزالة صلاحية الادمن من عضو بالكلان ( صاحب الكلان فقط ) ء
- \`${prefix}clan ownership\`: لنقل ملكيةالكلان
- \`${prefix}clan leave\`: للخروج من الكلان الذي انت به
- \`${prefix}clan kick\`: لطرد عضو من الكلان ( يتطلب صلاحية الادمن ) ء
- \`${prefix}clan disband\`: لمسح الكلان من السستم ( صاحب الكلان فقط ) ء
- \`${prefix}clan stats\`: لعرض معلومات الكلان تبعك
- \`${prefix}clan list\`: يظهر لك اعضاء الكلان برسالة
- \`${prefix}clan accept\`: لقبول شخص وجعل الشخص يدخل الكلان ( يتطلب صلاحية الادمن ) ء
- \`${prefix}clan decline\`: لرفض شخص وعم جعل الشخص يدخل الكلان ( يطلب صلاحية الادمن ) ء
- \`${prefix}clan room\`: لعمل روم شات او كتابي بأسم الكلان ( صاحب الكلان فقط ) ء`)
.setFooter(message.author.username, message.author.avatarURL);
message.channel.send(embed);
}
if(args[1] && args[1] === 'create') {
if(level[author.id].level < 0) return message.channel.send('**# يجب أن يكون لديك 10 مستويات لعمل كلان , لتجميع مستويات تفاعل بالشات وسيتم حساب النقاط**');
if(system[author.id].clan !== 'None') return message.channel.send('**# يجب عليك ان تخرج من الكلان الذي أنت به حاليا**');
let m = await message.channel.send('**# أكتب أسم الكلان الان**');
let awaited = await message.channel.awaitMessages(r => r.author.id === message.author.id, { max: 1, time: 20000, errors: ['time']}).then(collected => {
if(collected.first().content.length > 25) return message.channel.send("**# لا يمكنك وضع اسم للكلان يفوق الـ25 حرفا , أعد كابة الأمر**");
if(collected.first().content.includes("None")) return message.channel.send("**# `None`, لا يمكنك وضع هذه الكلمة كأسم للكلان**");
collected.first().delete().catch();
nameClan = collected.first().content;
});
m = await m.edit('**# جارى عمل الكلان**');
awaited = await setTimeout(async() => {
let membersArray = {
nameClan: {
array: []
}
};
let members = membersArray.nameClan.array;
members.push(message.author.id);
clans[nameClan] = {
name: nameClan,
createdAt: new Date().toLocaleString(),
level: levelClan,
creator: message.author.id,
members: members,
applylist: [],
admins: []
};
system[author.id] = {
clan: nameClan,
joinedAt: new Date().toLocaleString(),
clanLevel: 0,
creator: message.author.id
};
m = await m.edit('**# تم عمل الكلان بنجاح**');
}, 0);
}
if(args[1] && args[1] === 'invite') {
if(!system[author.id]) return message.channel.send("**# أنت لست بكلان**");
let clan = system[author.id].clan;
if(system[author.id].clan === 'None') return message.channel.send('**# أنت لست بكلان**');
if(!clans[clan].admins.includes(message.author.id) && clans[system[author.id].clan].creator !== message.author.id) return message.channel.send('**# يجب عليك ان تكون اداري بالكلان**');
let mention = message.mentions.users.first();
if(!mention) return message.channel.send('**# منشن شخص لدعوته للكلان**');
if(clans[clan].members.includes(mention.id)) return message.channel.send("**# هذا العضو بالكلان بالفعل**");
if(clans[clan].members.length === 10) return message.channel.send("**# هذا الكلان وصل للحد الاقصى من الاعضاء يمكنك**");
let m = await message.channel.send(`**${mention} # \`${clan}\`, تم دعوتك لدخول الكلان**\n\n - لقبول الدعوة \`نعم\`\n - لرفض الدعوة \`لا\``);
let awaiting = await message.channel.awaitMessages(r => r.author.id === mention.id, {max: 1, time: 20000, errors:['time']}).then(collected => {
collected.first().delete().catch();
if(collected.first().content === 'نعم') {
clans[clan].members.push(mention.id);
system[author.id].members += 1;
system[mention.id] = {
clan: clan,
joinedAt: new Date().toLocaleString(),
clanLevel: 0,
creator: clans[clan].creator
};
message.channel.send(`**${message.author} # تم قبول الدعوة**`);
}
if(collected.first().content === 'لا') {
message.channel.send(`**${message.author} # تم رفض الدعوة**`);
} else if(collected.first().content !== 'نعم' && collected.first().content !== 'لا'){
return message.channel.send('**# يجب عليك كتابة `نعم` أو `لا`**');
}
});
}
if(args[1] && args[1] === 'stats') {
if(system[author.id].clan === 'None') return message.channel.send('**# يجب ان تكون بكلان لأستخدام هذا الأمر**');
let clan = system[author.id].clan;
let embed = new Discord.RichEmbed()
.setAuthor(`${message.author.username} || الكلانات`, message.author.avatarURL)
.setDescription(`الكلان || \`${clan.toString()}\``)
embed.addField('» اسم الكلان', clan, true)
embed.addField('» تاريخ عمل الكلان', clans[clan].createdAt, true);
embed.addField('» تاريخ دخول الكلان', system[author.id].joinedAt, true)
embed.addField('» صاحب الكلان', `<@${clans[clan].creator}>`, true);
embed.addField('» لفل الكلان', clans[clan].level, true);
embed.addField('» عدد اعضاء الكلان', clans[clan].members.length, true);
embed.addField('» عدد التقديمات للكلان', clans[clan].applylist.length, true);
embed.addField('» عدد الادمنية بالكلان', clans[clan].admins.length, true);
embed.addField('» اعضاء الكلان', `${prefix}clan list || يظهرلك رسالة بها اعضاء الكلان`);
message.channel.send(embed);
}
if(args[1] && args[1] === 'join') {
let clanName = message.content.split(' ').slice(2).join(" ");
if(system[author.id].clan !== 'None') return message.channel.send("**# يجب أن لا تكون بكلان**");
if(!args[2]) return message.channel.send("**# يجب عليك كتابة اسم الكلان**");
if(!clans[clanName]) return message.channel.send("**# هذا الكلان غير موجود**");
if(clans[clanName].applylist.includes(message.author.id)) return message.channel.send("**# لقد قدمت على دخول هذا الكلان مسبقا");
clans[clanName].applylist.push(message.author.id);
message.channel.send("**# لقد تم التقديم على دخول الكلان , سيتم الرد عليك من قبل احد ادارة الكلان**");
}
if(args[1] && args[1] === 'accept') {
let mention = message.mentions.users.first();
if(system[author.id].clan === 'None') return message.channel.send("**# يجب عليك ان تكون بكلان لأستخدام هذا الأمر**");
if(!clans[system[author.id].clan].admins.includes(message.author.id) && clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب عليك ان تكون اداري بالكلان لأستخدام هذا الأمر**");
if(!mention) return message.channel.send("**# يجب عليك منشنة شخص لأستخدام هذا الأمر**");
if(!system[mention.id]) system[mention.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
if(!clans[system[author.id].clan].applylist.includes(mention.id)) return message.channel.send("**# هذا الشخص لم يقم بالتقديم على دخول الكلان**");
clans[system[author.id].clan].applylist.shift(mention.id);
clans[system[author.id].clan].members.push(mention.id);
let clan = system[author.id].clan;
system[mention.id] = {
clan: clan,
joinedAt: new Date().toLocaleString(),
clanLevel: 0,
creator: clans[clan].creator
};
mention.send(`**# \`${system[author.id].clan}\`, لقد تم قبولك بالكلان**`).catch();
message.channel.send(`**# \`${mention.username}\`, لقد تم قبول الشخص ودخوله للكلان**`);
}
if(args[1] && args[1] === 'decline') {
let mention = message.mentions.users.first();
if(system[author.id].clan === 'None') return message.channel.send("**# يجب عليك ان تكون بكلان لأستخدام هذا الأمر**");
if(!clans[system[author.id].clan].admins.includes(message.author.id) && clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب عليك ان تكون اداري بالكلان لأستخدام هذا الأمر**");
if(!mention) return message.channel.send("**# يجب عليك منشنة شخص لأستخدام هذا الأمر**");
if(!system[mention.id]) system[mention.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
if(!clans[system[author.id].clan].applylist.includes(message.author.id)) return message.channel.send("**# هذا الشخص لم يقم بالتقديم على دخول الكلان**");
clans[system[author.id].clan].applylist.shift(mention.id);
system[mention.id] = {
clan: clans[system[author.id].clan],
joinedAt: new Date().toLocaleString(),
clanLevel: 0
};
mention.send(`**# \`${system[author.id].clan}\`, لقد تم رفض دخولك للكلان**`).catch();
message.channel.send(`**# \`${mention.username}\`, لقد تم رفض دخول الشخص للكلان**`);
}
if(args[1] && args[1] === 'promote') {
let mention = message.mentions.users.first();
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
if(!clans[system[author.id].clan].admins.includes(message.author.id) && clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب عليك ان تكون اونر او ادمن بالكلان لترقية عضو بالكلان**");
if(!mention) return message.channel.send("**# يجب عليك منشنة عضو بالكلان لأعطائه الترقية**");
if(!system[mention.id]) system[mention.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
if(system[mention.id].clan === 'None') return message.channel.send("**# هذا الشخص ليس بكلان**");
if(!clans[system[author.id].clan].members.includes(mention.id)) return message.channel.send("**# هذا الشخص ليس بالكلان**");
if(clans[system[author.id].clan].admins.includes(mention.id)) return message.channel.send("**# هذا العضو لديه ادمن بالفعل**");
if(mention.id === message.author.id) return message.channel.send("**# لا يمكنك اعطاء نفسك ترقية**");
clans[system[author.id].clan].admins.push(mention.id);
mention.send(`**# \`${system[author.id].clan}\`, لقد تم ترقيتك الى ادمن**`).catch();
message.channel.send(`**# \`${mention.username}\`, لقد تم ترقية العضو الى رتبة ادمن**`);
}
if(args[1] && args[1] === 'demote') {
let mention = message.mentions.users.first();
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
if(clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# هذا الأمر لضاحب الكلان فقط**");
if(!mention) return message.channel.send("**# يجب عليك منشنة عضو بالكلان لأعطائه الترقية**");
if(!system[mention.id]) system[mention.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
if(system[mention.id].clan === 'None') return message.channel.send("**# هذا الشخص ليس بكلان**");
if(!clans[system[author.id].clan].members.includes(mention.id)) return message.channel.send("**# هذا الشخص ليس بالكلان**");
if(!clans[system[author.id].clan].admins.includes(mention.id)) return message.channel.send("**# هذا الشخص ليس ادمن بالكلان**");
if(mention.id === message.author.id) return message.channel.send("**# لا يمكنك اعطاء نفسك ترقية**");
clans[system[author.id].clan].admins.shift(mention.id);
mention.send(`**# \`${system[author.id].clan}\`, لقد تم ازالتك من منصب الادمن**`).catch();
message.channel.send(`**# \`${mention.username}\`, لقد تم ازالة الادمنية من العضو**`);
}
if(args[1] && args[1] === 'rename') {
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
let newName;
let oldName = clans[system[author.id].clan];
if(clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# هذا الأمر مخصص لصاحب الكلان فقط**");
if(!args[2]) return message.channel.send("**# يجب عليك تحديد اسم الكلان**");
let c = message.content.split(' ').slice(2).join(" ");
newName = c;
let clanInfo = clans[system[author.id].clan];
let m = await message.channel.send(`**# \`${c}\`, هل أنت متأكد من تغيير اسم الكلان \n\n - للتأكيد \`نعم\`\n - للرفض \`لا\`**`);
let awaiting = await message.channel.awaitMessages(r => r.author.id === message.author.id, {max: 1, time: 20000, errors: ['time']}).then(c => {
let collected = c.first();
collected.delete().catch();
m.delete().catch();
if(collected.content === 'نعم') {
clans[newName] = {
name: newName,
createdAt: clanInfo.createdAt,
level: clanInfo.level,
creator: clanInfo.creator,
members: clanInfo.members,
applylist: clanInfo.applylist,
admins: clanInfo.admins
};
clans[system[author.id].clan] = undefined;
system[author.id].clan = newName;
message.channel.send("**# جارى تغيير الاسم**");
message.channel.send("**# تم تغيير اسم الكلان بنجاح**");
} else if(collected.content === 'لا') {
message.channel.send(`**# \`${newName}\`, تم الغاء تغيير اسم الكلان**`);
} else if(collected.first().content !== 'نعم' && collected.first().content !== 'لا'){
return message.channel.send('**# يجب عليك كتابة `نعم` أو `لا`**')
}
});
}
if(args[1] && args[1] === 'list') {
if(system[author.id].clan === 'None') return message.channel.send("**# يجب عليك ان تكون بكلان لأستخدام هذا الأمر**");
let clan = clans[system[author.id].clan];
let members = Array.from(clan.members);
let admins = Array.from(clan.admins);
let applylist = Array.from(clan.applylist);
let i = 1;
let o = 1;
let embed = new Discord.RichEmbed();
embed.setAuthor(`${message.author.username} || ${clan.name}`, message.author.avatarURL);
embed.addField("# Members", members.map(r => `\`${i++}.\` **|| <@${r}>**`).join('\n') || `\`1.\` **|| None**`, true);
embed.addField('# Admins', admins.map(r => `\`${o++}.\` **|| <@${r}>**`).join('\n') || `\`1.\` **|| None**`, true);
embed.addField('# Apply', applylist.map(r => `\`${o++}.\` **|| <@${r}>**`).join('\n') || `\`1.\` **|| None**`, true);
embed.addField('# Owner', `\`1.\` **|| <@${clan.creator}>**`, true);
message.channel.send(embed);
}
if(args[1] && args[1] === 'leave') {
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
let m = await message.channel.send("**# هل انت متأكد انك تريد الخروج من الكلان \n\n - للتأكيد \`نعم\`\n - للألغاء \`لا\`**");
let awaited = await message.channel.awaitMessages(r => r.author.id === message.author.id, {max: 1, time: 20000, errors:['time']}).then(c => {
let collected = c.first();
if(collected.content === 'نعم') {
clans[system[author.id].clan].members.shift(author.id);
system[author.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
message.channel.send("**# لقد غادرت الكلان**");
} else if(collected.content === 'لا') {
message.channel.send("**# تم الغاء الخروج من الكلان**");
} else if(collected.content !== 'نعم' && collected.content === 'لا') {
message.channel.send('**# يجب عليك كتابة `نعم` أو `لا`**');
}
});
}
if(args[1] && args[1] === 'kick') {
let mention = message.mentions.users.first();
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
if(!clans[system[author.id].clan].admins.includes(message.author.id) && clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب عليك ان تكون اونر او ادمن بالكلان لأستخدام هذا الامر**");
if(!mention) return message.channel.send("**# يجب عليك منشنة عضو بالكلان لطرده**");
if(!system[mention.id]) system[mention.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
if(system[mention.id].clan === 'None') return message.channel.send("**# هذا الشخص ليس بكلان**");
if(!clans[system[author.id].clan].members.includes(mention.id)) return message.channel.send("**# هذا الشخص ليس بالكلان**");
if(clans[system[author.id].clan].admins.includes(mention.id) && clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# هذا العضو لديه ادمن**");
if(mention.id === message.author.id) return message.channel.send("**# لا يمكنك طرد نفسك**");
let index = clans[system[author.id].clan].members.indexOf(mention.id);
let index2 = clans[system[author.id].clan].admins.indexOf(mention.id) || "";
clans[system[author.id].clan].members.splice(index, 1);
if(clans[system[author.id].clan].admins.includes(mention.id)) clans[system[author.id].clan].admins.splice(index2, 1);
system[mention.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
message.channel.send(`**# \`${mention.username}\`, تم طرد الشخص من الكلان**`);
mention.send(`**# \`${system[author.id].clan}\`, لقد تم طردك من الكلان**`).catch();
}
if(args[1] && args[1] === 'ownership') {
let mention = message.mentions.users.first();
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
if(!mention) return message.channel.send("**# يجب عليك منشنة شخص لتسليمه الأونر**");
if(clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب أن تكون صاحب الكلان لأستخدام هذا الأمر**");
if(!clans[system[author.id].clan].members.includes(mention.id)) return message.channel.send("**# هذا الشخص ليس بالكلان**");
let o = Math.floor(Math.random() * 8) + 1;
let t = Math.floor(Math.random() * 8) + 1;
let th = Math.floor(Math.random() * 8) + 1;
let f = Math.floor(Math.random() * 8) + 1;
let number = `${o}${t}${th}${f}`;
message.author.send(`- \`${number}\`, أكتب هذا الرقم بالشات للأستمرار`).catch(e => {
return message.channel.send(`**# يجب عليك فتح خاصك لأستخدام هذا الأمر**`);
});
let m = await message.channel.send("**# تم ارسال رقم التكملة بالخاص .. يجب عليك كتابة الرقم بالشات للأستمرار**");
let awaited = await message.channel.awaitMessages(r => r.author.id === message.author.id, {max: 1, time: 10000, errors:['time']}).then(c => {
let collected = c.first();
if(collected.content === number) {
clans[system[author.id].clan].creator = mention.id;
m.delete();
message.channel.send(`**# \`${mention.username}\`, تم تحويل اونر الكلان للشخص**`);
} else
if(collected.content !== number) {
m.delete();
}
});
}
if(args[1] && args[1] === 'disband') {
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
if(clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب أن تكون صاحب الكلان لأستخدام هذا الأمر**");
let o = Math.floor(Math.random() * 8) + 1;
let t = Math.floor(Math.random() * 8) + 1;
let th = Math.floor(Math.random() * 8) + 1;
let f = Math.floor(Math.random() * 8) + 1;
let fi = Math.floor(Math.random() * 8) + 1;
let number = `${o}${t}${th}${f}${fi}`;
message.author.send(`- \`${number}\`, أكتب هذا الرقم بالشات للأستمرار`).catch(e => {
return message.channel.send(`**# يجب عليك فتح خاصك لأستخدام هذا الأمر**`);
});
let m = await message.channel.send("**# تم ارسال رقم التكملة بالخاص .. يجب عليك كتابة الرقم بالشات للأستمرار**");
let awaited = await message.channel.awaitMessages(r => r.author.id === message.author.id, {max: 1, time: 60000, errors:['time']}).then(c => {
let collected = c.first();
if(collected.content === number) {
m.delete().catch();
collected.delete().catch();
let name = system[author.id].clan;
let members = clans[system[author.id].clan].members.length;
let cvlMembers = Array.from(clans[name].members);
for(let i = 0; i < cvlMembers.length; i++) {
let g = hero.users.get(cvlMembers[0]);
g.send(`- \`${system[author.id].clan}\`, تم اقفال الكلان`).catch();
system[g.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
cvlMembers.shift();
if(cvlMembers.length <= 0) {
message.channel.send(`- \`${name}\`, تم اقفال الكلان`);
system[author.id] = {clan: 'None',joinedAt: new Date().toLocaleString() ,clanLevel: 0};
clans[system[author.id].clan] = undefined;
}
}
} else
if(collected.content !== number) {
m.delete();
message.channel.send(`- \`${name}\`, تم الإلغاء`);
}
});
}
if(args && args[1] === 'room') {
if(system[author.id].clan === 'None') return message.channel.send("**# يجب ان تكون بكلان لأستخدام هذا الأمر**");
if(clans[system[author.id].clan].creator !== message.author.id) return message.channel.send("**# يجب أن تكون صاحب الكلان لأستخدام هذا الأمر**");
if(message.guild.channels.find(r => r.name.toLowerCase() === system[author.id].clan && r.type === 'text') || message.guild.channels.find(r => r.name === system[author.id].clan && r.type === 'voice')) return message.channel.send("**# الكلان لديه روم بالفعل**");
let id = '487721170687229977';
let m = await message.channel.send("**# اكتب نوع الروم الان\n\n - `كتابي`\n - `صوتي`**");
let awaited = await message.channel.awaitMessages(r => r.author.id === message.author.id, {max: 1, time: 20000, errors:['time']}).then(c => {
let collected = c.first();
if(collected.content === 'كتابي') {
message.guild.createChannel(system[author.id].clan, 'text').then(c => {
c.setParent(id);
c.overwritePermissions(message.guild.id, {
SEND_MESSAGES: false,
READ_MESSAGES: true,
CONNECT: false,
SPEAK: false
});
let newArray = Array.from(clans[system[author.id].clan].members);
for(let i = 0; i < newArray.length; i++) {
c.overwritePermissions(newArray[0], {
SEND_MESSAGES: true,
READ_MESSAGES: true,
CONNECT: true,
SPEAK: true
});
newArray.shift();
}
});
m.edit('**# تم عمل الروم**');
} else if(collected.content === 'صوتي') {
message.guild.createChannel(system[author.id].clan, 'voice').then(c => {
c.setParent(id);
c.overwritePermissions(message.guild.id, {
CONNECT: false,
SPEAK: false
});
let newArray = Array.from(clans[system[author.id].clan].members);
for(let i = 0; i < newArray.length; i++) {
c.overwritePermissions(newArray[0], {
CONNECT: true,
SPEAK: true
});
newArray.shift();
}
});
m.edit('**# تم عمل الروم**');
}
});
}
}
});
client.on('message', message => {
if (message.content == "-جمع") {
var x = ["212+212=?",
"321+43=?",
"4534+23",
"23+3434=?",
"2311+32=?",
"765+343=?",
"343+1121=?",
"43234+1=?",
"10000000000+2=?",
"232+21=?",
"12+23=?",
];
var x2 = ['424',
"364",
"4557",
"3457",
"2343",
"1108",
"1464",
"43235",
"10000000002",
"253",
"35",
];
var x3 = Math.floor(Math.random()*x.length)
message.channel.send(` اول شخص يحل جمع : __**${x[x3]}**_
لديك 15 ثانية للاجابة`).then(msg1=> {
var r = message.channel.awaitMessages(msg => msg.content == x2[x3], {
maxMatches : 1,
time : 15000,
errors : ['time']
})
r.catch(() => {
return message.channel.send(`:negative_squared_cross_mark: لقد انتهى الوقت ولم يقم أحد بالأجابة بشكل صحيح
الإجآبة الصحيحةة هي __**${x2[x3]}**__`)
})
r.then((collected)=> {
message.channel.send(`${collected.first().author} لقد قمت بحل جمع في الوقت المناسب `);
})
})
}
})
client.on('message', message => {
if (message.content == "-ضرب") {
var x = ["9x9=?",
"8x9=?",
"4x4=?",
"2x22=?",
"12x2=?",
"7x7=?",
"5x5=?",
"9x3=?",
"2342432x0=?",
"21321x1=?",
"3x4x5=?",
];
var x2 = ['81',
"72",
"16",
"42",
"22",
"49",
"25",
"27",
"0",
"21321",
"60",
];
var x3 = Math.floor(Math.random()*x.length)
message.channel.send(` اول شخص يحل ضرب : __**${x[x3]}**__
لديك 15 ثانية لحل ضرب`).then(msg1=> {
var r = message.channel.awaitMessages(msg => msg.content == x2[x3], {
maxMatches : 1,
time : 15000,
errors : ['time']
})
r.catch(() => {
return message.channel.send(`:negative_squared_cross_mark: لقد انتهى الوقت ولم يقم أحد بالأجابة بشكل صحيح
الإجآبة الصحيحةة هي __**${x2[x3]}**__`)
})
r.then((collected)=> {
message.channel.send(`${collected.first().author}لقد قمت بكتابة حل في الوقت المناسب `);
})
})
}
})
client.on('message', message => {
if (message.content == "-طرح") {
var x = ["4326-2345=?",
"5822-8547=?",
"543-823=?",
"1500-500=?",
"4322-2768=?",
"5652-1255=?",
"3421-11234=?",
"34545-1233=?",
"23456-54332=?",
"2312-3433=?",
"4321-321=?",
];
var x2 = ['1981',
"-2725",
"-280",
"1000",
"1554",
"4397",
"-7813",
"33312",
"-30876",
"1121",
"4000",
];
var x3 = Math.floor(Math.random()*x.length)
message.channel.send(` اول شخص يكتب حل صح : __**${x[x3]}**__
لديك 15 ثانية لكتابة حل صحيح`).then(msg1=> {
var r = message.channel.awaitMessages(msg => msg.content == x2[x3], {
maxMatches : 1,
time : 15000,
errors : ['time']
})
r.catch(() => {
return message.channel.send(`:negative_squared_cross_mark: لقد انتهى الوقت ولم يقم أحد بالأجابة بشكل صحيح
الإجآبة الصحيحةة هي __**${x2[x3]}**__`)
})
r.then((collected)=> {
message.channel.send(`${collected.first().author}لقد قمت بكتابة حل في الوقت المناسب `);
})
})
}
})
const pics = JSON.parse(fs.readFileSync('./pics.json' , 'utf8'));
client.on('message', message => {
if (!message.channel.guild) return;
let room = message.content.split(" ").slice(1);
let findroom = message.guild.channels.find('name', `${room}`)
if(message.content.startsWith(prefix + "setMedia")) {
if(!message.channel.guild) return message.reply('**This Command Only For Servers**');
if(!message.member.hasPermission('MANAGE_GUILD')) return message.channel.send('**Sorry But You Dont Have Permission** `MANAGE_GUILD`' );
if(!room) return message.channel.send('Please Type The Channel Name')
if(!findroom) return message.channel.send('Cant Find This Channel')
let embed = new Discord.RichEmbed()
.setTitle('**Done The MediaOnly Code Has Been Setup**')
.addField('Channel:', `${room}`)
.addField('Requested By', `${message.author}`)
.setThumbnail(message.author.avatarURL)
.setFooter(`${client.user.username}`)
message.channel.sendEmbed(embed)
pics[message.guild.id] = {
channel: room,
onoff: 'On'
},
fs.writeFile("./pics.json", JSON.stringify(pics), (err) => {
if (err) console.error(err)
})
}})
client.on('message', message => {
if(message.content.startsWith(prefix + "toggleMedia")) {
if (!message.channel.guild) return;
if(!message.channel.guild) return message.reply('**This Command Only For Servers**');
if(!message.member.hasPermission('MANAGE_GUILD')) return message.channel.send('**Sorry But You Dont Have Permission** `MANAGE_GUILD`' );
if(!pics[message.guild.id]) pics[message.guild.id] = {
onoff: 'Off'
}
if(pics[message.guild.id].onoff === 'Off') return [message.channel.send(`**The MediaCode Is __𝐎𝐍__ !**`), pics[message.guild.id].onoff = 'On']
if(pics[message.guild.id].onoff === 'On') return [message.channel.send(`**The MediaCode Is __𝐎𝐅𝐅__ !**`), pics[message.guild.id].onoff = 'Off']
fs.writeFile("./pics.json", JSON.stringify(pics), (err) => {
if (err) console.error(err)
})
}
})
client.on('message', message => {
if (!message.channel.guild) return;
if(message.author.bot) return;
if(!pics[message.guild.id]) pics[message.guild.id] = {
onoff: 'Off'
}
if(pics[message.guild.id].onoff === 'Off') return;
if(message.channel.name !== `${pics[message.guild.id].channel}`) return;
let types = [
'jpg',
'jpeg',
'png',
'http://prntscr.com/'
]
if (message.attachments.size <= 0) {
message.delete();
message.channel.send(`${message.author}, This Channel For Media 🖼️ Only !`)
.then(msg => {
setTimeout(() => {
msg.delete();
}, 5000)
})
return;
}
if(message.attachments.size >= 1) {
let filename = message.attachments.first().filename
console.log(filename);
if(!types.some( type => filename.endsWith(type) )) {
message.delete();
message.channel.send(`${message.author}, This Channel For Media 🖼️ Only !`)
.then(msg => {
setTimeout(() => {
msg.delete();
}, 5000)
})
.catch(err => {
console.error(err);
});
}
}
})
client.on('message', message => {
if(message.content.startsWith(prefix + "infoMedia")) {
let embed = new Discord.RichEmbed()
.addField('Channel Status', `${pics[message.guild.id].onoff}`)
.addField('Media Channel', `${pics[message.guild.id].channel}`)
.addField('Requested By', `${message.author}`)
.setThumbnail(message.author.avatarURL)
.setFooter(`${client.user.username}`)
message.channel.sendEmbed(embed)
}})
const kingmas = [
'*** منشن الجميع وقل انا اكرهكم. ***',
'*** اتصل على امك و قول لها انك تحبها :heart:. ***',
'*** تصل على الوالده و تقول لها احب وحده.***',
'*** تتصل على شرطي تقول له عندكم مطافي.***',
'*** صور اي شيء يطلبه منك الاعبين.***',
'*** اكتب في الشات اي شيء يطلبه منك الاعبين في الخاص. ***',
'*** اتصل على احد من اخوياك خوياتك , و اطلب منهم مبلغ على اساس انك صدمت بسيارتك.***',
'*** اعطي اي احد جنبك كف اذا مافيه احد جنبك اعطي نفسك و نبي نسمع صوت الكف.***',
'*** تروح عند شخص تقول له احبك. ***',
'***روح عند اي احد بالخاص و قول له انك تحبه و الخ.***',
'*** اذهب الى واحد ماتعرفه وقل له انا كيوت وابي بوسه. ***',
'*** روح الى اي قروب عندك في الواتس اب و اكتب اي شيء يطلبه منك الاعبين الحد الاقصى 3 رسائل. ***',
'*** اذا انت ولد اكسر اغلى او احسن عطور عندك اذا انتي بنت اكسري الروج حقك او الميك اب حقك. ***',
'*** ذي المرة لك لا تعيدها.***',
'*** ارمي جوالك على الارض بقوة و اذا انكسر صور الجوال و ارسله في الشات العام.***',
'*** اتصل على ابوك و قول له انك رحت مع بنت و احين هي حامل..... ***',
'*** تكلم باللهجة السودانية الين يجي دورك مرة ثانية.***',
'***سو مشهد تمثيلي عن مصرية بتولد.***',
'*** قول نكتة اذا و لازم احد الاعبين يضحك اذا محد ضحك يعطونك ميوت الى ان يجي دورك مرة ثانية. ***',
'*** قول نكتة اذا و لازم احد الاعبين يضحك اذا محد ضحك يعطونك ميوت الى ان يجي دورك مرة ثانية.***',
'*** سامحتك خلاص مافيه عقاب لك :slight_smile:. ***',
'*** اذهب الى واحد ماتعرفه وقل له انا كيوت وابي بوسه.***',
'*** تتصل على الوالده و تقول لها خطفت شخص. ***',
'*** روح اكل ملح + ليمون اذا مافيه اكل اي شيء من اختيار الي معك. ***'
]
client.on('message', message => {
var prefix = '-';
if (message.content.startsWith(prefix + 'حكم')) {
var mariam= new Discord.RichEmbed()
.setTitle("لعبة حكم ..")
.setColor('RANDOM')
.setDescription(`${kingmas[Math.floor(Math.random() * kingmas.length)]}`)
message.channel.sendEmbed(mariam);
message.react(":thinking:")
}
});
client.on('message', PuP => {
let args = PuP.content.split(" ").slice(1).join(" ")
if (PuP.content.startsWith(`${prefix}sr`)) {
if (!PuP.member.hasPermission("MANAGE_SERVER")) return;
if(!args) return PuP.channel.send('`**يرجي ادخال اسم السرفر الجديد**`');
PuP.guild.owner.send(`**ى تغيير اسم السرفر الي ${args}
بواسطة : <@${PuP.author.id}>**`)
PuP.guild.setName(args)
PuP.channel.send(`**تم تغير اسم السيرفر الي : __${args}__ **`);
}
});
client.on('ready', function(){
var ms = 10000 ;
var setGame = ['-help'];
var i = -1;
var j = 0;
setInterval(function (){
if( i == -1 ){
j = 1;
}
if( i == (setGame.length)-1 ){
j = -1;
}
i = i+j;
client.user.setGame(setGame[i],``);
}, ms);
console.log(`Logged in as ${client.user.tag}!`);
console.log('')
console.log('')
console.log('╔[═════════════════════════════════════════════════════════════════]╗')
console.log(`[Start] ${new Date()}`);
console.log('╚[═════════════════════════════════════════════════════════════════]╝')
console.log('')
console.log('╔[════════════════════════════════════]╗');
console.log(`Logged in as * [ " ${client.user.username} " ]`);
console.log('')
console.log('Informations :')
console.log('')
console.log(`servers! [ " ${client.guilds.size} " ]`);
console.log(`Users! [ " ${client.users.size} " ]`);
console.log(`channels! [ " ${client.channels.size} " ]`);
console.log('╚[════════════════════════════════════]╝')
console.log('')
console.log('╔[════════════]╗')
console.log(' Bot Is Online')
console.log('╚[════════════]╝')
console.log('')
console.log('')
});
client.on('message', message => {
var prefix = "-";
if(message.content === prefix + "hchannel") {
if(!message.channel.guild) return;
if(!message.member.hasPermission('ADMINISTRATOR')) return message.reply('You Dont Have Perms :x:');
message.channel.overwritePermissions(message.guild.id, {
READ_MESSAGES: false
})
message.channel.send('Channel Hided Successfully ! :white_check_mark: ')
}
});
client.on('message',async Epic => {
var prefix = "-" ;
if(Epic.content.startsWith(prefix + "vonline")) {
if(!Epic.guild.member(Epic.author).hasPermissions('MANAGE_CHANNELS')) return Epic.reply(':x: **I Dont Have Permissions**');
if(!Epic.guild.member(client.user).hasPermissions(['MANAGE_CHANNELS','MANAGE_ROLES_OR_PERMISSIONS'])) return Epic.reply(':x: **You Dont Have Permissions**');
Epic.guild.createChannel(`Voice Online : [ ${Epic.guild.members.filter(m => m.voiceChannel).size} ]` , 'voice').then(c => {
console.log(`Voice Online Is Activation In ${Epic.guild.name}`);
c.overwritePermissions(Epic.guild.id, {
CONNECT: false,
SPEAK: false
});
setInterval(() => {
c.setName(`Voice Online : ${Epic.guild.members.filter(m => m.voiceChannel).size} .`)
},1000);
});
}
});
client.on('message', message => {
var prefix = "-";
var cats = ["http://www.shuuf.com/shof/uploads/2015/09/09/jpg/shof_b9d73150f90a594.jpg","https://haltaalam.info/wp-content/uploads/2015/05/0.208.png","https://haltaalam.info/wp-content/uploads/2015/05/266.png","https://haltaalam.info/wp-content/uploads/2015/05/250.png","https://haltaalam.info/wp-content/uploads/2017/02/0.2517.png","https://pbs.twimg.com/media/CP0mi02UAAA3U2z.png","http://www.shuuf.com/shof/uploads/2015/08/31/jpg/shof_3b74fa7295ec445.jpg","http://www.shuuf.com/shof/uploads/2015/08/22/jpg/shof_fa3be6ab68fb415.jpg","https://pbs.twimg.com/media/CSWPvmRUcAAeZbt.png","https://pbs.twimg.com/media/B18VworIcAIMGsE.png"]
var args = message.content.split(" ").slice(1);
if(message.content.startsWith(prefix + 'هل تعلم')) {
var cat = new Discord.RichEmbed()
.setImage(cats[Math.floor(Math.random() * cats.length)])
message.channel.sendEmbed(cat);
}
});
client.on('message', message => {
var prefix = "-";
if(message.content === prefix + "schannel") {
if(!message.channel.guild) return;
if(!message.member.hasPermission('ADMINISTRATOR')) return message.reply(':x:');
message.channel.overwritePermissions(message.guild.id, {
READ_MESSAGES: true
})
message.channel.send('Done ')
}
});
client.on('message', message=> {
if (message.author.bot) return;
if (message.isMentioned(client.user))
{
message.reply("**My Prefix Is** : `-`")
}
});
client.on("message", async message => {
if(message.author.bot) return;
if(message.channel.type === "dm") return;
let prefix = "-";
let messageArray = message.content.split (" ");
let cmd = messageArray[0];
let args = messageArray.slice(1);
if(cmd === `#{prefix}8ball`){
if(!args[1]) return message.reply("Please ask a full question!");
let replies = ["Yes", "No.", "I don't know.", "Ask again later plez."];
let result = Math.floor((Math.random() * replies.length));
let question = args.slice(1).join(" ");
let ballembed = new Discord.RichEmbed ()
.setAuthor(message.author.tag)
.setColor("#FF9900")
.addField("Question", question)
.addField("Answer", replies[result]);
message.channel.send(ballembed);
}
});
const Love = [ "**احبك / عدد قطرات المـــطر والشجر وامواج البحر والنجوم الي تتزاحم مبهورة في جمال القمر**.", "**ساعزفك وساجعلك لحنا تغني عليه جميع قصائد العشــق**.", "**احبك موت... لاتسألني ما الدليل ارأيت رصاصه تسأل القتيل؟**.", "**ربما يبيع الانسان شيئا قد شراه لاكن لا يبيع قلبا قد هواه**.", "**و ما عجبي موت المحبين في الهوى ........... و لكن بقاء العاشقين عجيب**.", "**حلفت / لاحشـــد جيوش الحب واحتلك مسكين ربي بلاك بعـــاشق ارهـــابي**.", "**العيــن تعشق صورتك ... والقلب يجري فيه دمك وكل مااسمع صوتك ...شفايفي تقول احبك**.", "**ياحظ المكان فيك..ياحظ من هم حواليك ...ياحظ الناس تشوفك ... وانا مشتاق اليك**.", "**لو كنت دمعة داخل عيوني بغمض عليك وصدقي ما راح افتح...ولو كان الثمن عيوني**.", "**سهل اموت عشانك لكن الصعب اعيش بدونك سهل احبك لكن صعب انساك**.", "**أخشى ان انظر لعيناك وأنا فى شوق ولهيب لرؤياك**.", "**أتمنى ان اكون دمعة تولد بعينيك واعيش على خديك واموت عند شفتيك**.", "**أحياناً أرى الحياة لا تساوى إبتسامة لكن دائماً إبتسامتك هى كيانى**.", "**من السهل أن ينسى الانسان نفسه .. لكن من الصعب ان ينسى نفساً سكنت نفسه !**.", "**نفسى أكون نجمة سماك .. همسة شفاك .. شمعة مساك .. بس تبقى معايا وانا معاك**.", "**أهنئ قلبى بحبك وصبر عينى فى بعدك وأقول إنك نور عينى يجعل روحى فدى قلبك**.", ]
client.on('message', message => {
if (message.content.startsWith("P.love")) {
if(!message.channel.guild) return message.reply('** This command only for servers**');
var embed = new Discord.RichEmbed()
.setColor(0xd3d0c4)