Advertisement
Guest User

Tufo

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