Advertisement
AbuHamid

AbuHamid

May 25th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. client.on('message', msg => {
  2.   if (msg.content === 'السعودية') {      
  3.     msg.react("🇸🇦")
  4.     msg.channel.send("🇸🇦")
  5.   }
  6. });
  7.  
  8. client.on('message', msg => {
  9.   if (msg.content === 'مصر') {      
  10.     msg.react("🇪🇬")
  11.     msg.channel.send("🇪🇬")
  12.   }
  13. });
  14.  
  15. client.on('message', msg => {
  16.   if (msg.content === 'المغرب') {      
  17.     msg.react("🇲🇦")
  18.     msg.channel.send("🇲🇦")
  19.   }
  20. });
  21.  
  22. client.on('message', msg => {
  23.   if (msg.content === 'العراق') {      
  24.     msg.react("🇮🇶")
  25.     msg.channel.send("🇮🇶")
  26.   }
  27. });
  28.  
  29. client.on('message', msg => {
  30.   if (msg.content === 'الجزائر') {      
  31.     msg.react("🇩🇿")
  32.     msg.channel.send("🇩🇿")
  33.   }
  34. });
  35.  
  36. client.on('message', msg => {
  37.   if (msg.content === 'الامارات') {      
  38.     msg.react("🇦🇪")
  39.     msg.channel.send("🇦🇪")
  40.   }
  41. });
  42.  
  43. client.on('message', msg => {
  44.   if (msg.content === 'تونس') {      
  45.     msg.react("🇹🇳")
  46.     msg.channel.send("🇹🇳")
  47.   }
  48. });
  49.  
  50. client.on('message', msg => {
  51.   if (msg.content === 'سوريا') {      
  52.     msg.react("🇸🇾")
  53.     msg.channel.send("🇸🇾")
  54.   }
  55. });
  56.  
  57. client.on('message', msg => {
  58.   if (msg.content === 'ليبيا') {      
  59.     msg.react("🇱🇾")
  60.     msg.channel.send("🇱🇾")
  61.   }
  62. });
  63.  
  64. client.on('message', msg => {
  65.   if (msg.content === 'قطر') {      
  66.     msg.react("🇶🇦")
  67.     msg.channel.send("🇶🇦")
  68.   }
  69. });
  70.  
  71. client.on('message', msg => {
  72.   if (msg.content === 'الصومال') {      
  73.     msg.react("🇸🇴")
  74.     msg.channel.send("🇸🇴")
  75.   }
  76. });
  77.  
  78. client.on('message', msg => {
  79.   if (msg.content === 'عمان') {      
  80.     msg.react("🇴🇲")
  81.     msg.channel.send("🇴🇲")
  82.   }
  83. });
  84.  
  85. client.on('message', msg => {
  86.   if (msg.content === 'موريتانيا') {      
  87.     msg.react("🇲🇷")
  88.     msg.channel.send("🇲🇷")
  89.   }
  90. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement