Skip to content

Instantly share code, notes, and snippets.

@KOULIKS94
Created March 20, 2025 17:19
Show Gist options
  • Select an option

  • Save KOULIKS94/32a11bd6ecd10c4ed721d27588146db8 to your computer and use it in GitHub Desktop.

Select an option

Save KOULIKS94/32a11bd6ecd10c4ed721d27588146db8 to your computer and use it in GitHub Desktop.
const userXP = {};
bot(
{
pattern: 'rank',
desc: 'Check your level',
type: 'leveling',
},
async (message) => {
const user = message.sender;
userXP[user] = (userXP[user] || 0) + 1;
const level = Math.floor(userXP[user] / 10);
await message.send(`🎖 *Level:* ${level}\n💬 *Messages Sent:* ${userXP[user]}`);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment