Upload case.js
Browse files
case.js
CHANGED
@@ -1007,6 +1007,9 @@ module.exports = async (conn, dev, chatUpdate, store) => {
|
|
1007 |
> ${sign} dare
|
1008 |
> ${sign} quote
|
1009 |
> ${sign} aniquote
|
|
|
|
|
|
|
1010 |
> โโโโโโโโโโโโโโ
|
1011 |
|
1012 |
> โใ \`๐๐๐๐๐ ๐๐๐๐\` ใ
|
@@ -1695,7 +1698,93 @@ case 'kick': {
|
|
1695 |
|
1696 |
|
1697 |
|
1698 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1699 |
case 'flirt': {
|
1700 |
await loading();
|
1701 |
try {
|
|
|
1007 |
> ${sign} dare
|
1008 |
> ${sign} quote
|
1009 |
> ${sign} aniquote
|
1010 |
+
> ${sign} love
|
1011 |
+
> ${sign} angry
|
1012 |
+
> ${sign} conf
|
1013 |
> โโโโโโโโโโโโโโ
|
1014 |
|
1015 |
> โใ \`๐๐๐๐๐ ๐๐๐๐\` ใ
|
|
|
1698 |
|
1699 |
|
1700 |
|
1701 |
+
case 'love': {
|
1702 |
+
const heartEmojis = [
|
1703 |
+
'โฅ๏ธ', 'โฃ๏ธ', '๐', '๐', '๐', '๐', '๐', '๐', '๐', 'โค๏ธโ๐ฅ',
|
1704 |
+
'โค๏ธ', '๐งก', '๐', '๐', '๐', '๐', '๐ค', '๐ค', '๐ค', '๐',
|
1705 |
+
'๐ซ', '๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐'
|
1706 |
+
];
|
1707 |
+
const loveMsg = await conn.sendMessage(m.chat, {
|
1708 |
+
text: heartEmojis[0]
|
1709 |
+
}, {
|
1710 |
+
quoted: m
|
1711 |
+
});
|
1712 |
+
const updateMessage = async (index = 1) => {
|
1713 |
+
if (index < heartEmojis.length) {
|
1714 |
+
await conn.relayMessage(m.chat, {
|
1715 |
+
protocolMessage: {
|
1716 |
+
key: loveMsg.key,
|
1717 |
+
type: 14,
|
1718 |
+
editedMessage: {
|
1719 |
+
conversation: heartEmojis[index]
|
1720 |
+
}
|
1721 |
+
}
|
1722 |
+
}, {});
|
1723 |
+
setTimeout(() => updateMessage(index + 1), 1000);
|
1724 |
+
}
|
1725 |
+
};
|
1726 |
+
setTimeout(() => updateMessage(), 1000);
|
1727 |
+
break;
|
1728 |
+
}
|
1729 |
+
case 'confuse':
|
1730 |
+
case 'conf': {
|
1731 |
+
const confusedEmojis = [
|
1732 |
+
'๐', '๐ค', '๐ต', '๐ตโ๐ซ', '๐คท', '๐คทโโ๏ธ', '๐คทโโ๏ธ', '๐ฎโ๐จ', '๐', '๐คจ',
|
1733 |
+
'๐', '๐ฌ', '๐ฏ', '๐', '๐', '๐ณ', '๐คช', '๐คฏ'
|
1734 |
+
];
|
1735 |
+
|
1736 |
+
const confuseMsg = await conn.sendMessage(m.chat, {
|
1737 |
+
text: confusedEmojis[0]
|
1738 |
+
}, {
|
1739 |
+
quoted: m
|
1740 |
+
});
|
1741 |
+
const updateMessage = async (index = 1) => {
|
1742 |
+
if (index < confusedEmojis.length) {
|
1743 |
+
await conn.relayMessage(m.chat, {
|
1744 |
+
protocolMessage: {
|
1745 |
+
key: confuseMsg.key,
|
1746 |
+
type: 14,
|
1747 |
+
editedMessage: {
|
1748 |
+
conversation: confusedEmojis[index]
|
1749 |
+
}
|
1750 |
+
}
|
1751 |
+
}, {});
|
1752 |
+
setTimeout(() => updateMessage(index + 1), 1000);
|
1753 |
+
}
|
1754 |
+
};
|
1755 |
+
setTimeout(() => updateMessage(), 1000);
|
1756 |
+
break;
|
1757 |
+
}
|
1758 |
+
case 'angry':
|
1759 |
+
case 'gtf': {
|
1760 |
+
const angryEmojis = [
|
1761 |
+
'๐ก', '๐ ', '๐คฌ', '๐ฟ', '๐ข', '๐ฅ', '๐พ', '๐ค', '๐คฏ', '๐ฅ',
|
1762 |
+
'๐พ', '๐บ', '๐', '๐ฏ๏ธ', '๐', '๐', '๐ฅต', '๐งจ', '๐น', '๐ฃ',
|
1763 |
+
'๐ ', '๐', '๐ฅ', '๐ก', '๐คฌ', '๐ฅ', '๐๐ฝ'
|
1764 |
+
];
|
1765 |
+
|
1766 |
+
const angryMsg = await conn.sendMessage(m.chat, {
|
1767 |
+
text: angryEmojis[0]
|
1768 |
+
}, {
|
1769 |
+
quoted: m
|
1770 |
+
});
|
1771 |
+
const updateMessage = async (index = 1) => {
|
1772 |
+
if (index < angryEmojis.length) {
|
1773 |
+
await conn.relayMessage(m.chat, {
|
1774 |
+
protocolMessage: {
|
1775 |
+
key: angryMsg.key,
|
1776 |
+
type: 14,
|
1777 |
+
editedMessage: {
|
1778 |
+
conversation: angryEmojis[index]
|
1779 |
+
}
|
1780 |
+
}
|
1781 |
+
}, {});
|
1782 |
+
setTimeout(() => updateMessage(index + 1), 1000);
|
1783 |
+
}
|
1784 |
+
};
|
1785 |
+
setTimeout(() => updateMessage(), 1000);
|
1786 |
+
break;
|
1787 |
+
}
|
1788 |
case 'flirt': {
|
1789 |
await loading();
|
1790 |
try {
|