Commited backup

This commit is contained in:
2025-07-10 21:02:34 +03:00
parent 952c1001e3
commit da0b80823e
1310 changed files with 254133 additions and 41 deletions

11
KeyZenD/modules/hearts.py Normal file
View File

@@ -0,0 +1,11 @@
from .. import loader
from asyncio import sleep
@loader.tds
class HeartsMod(loader.Module):
strings = {"name": "Heart's"}
@loader.owner
async def heartscmd(self, message):
for _ in range(10):
for heart in ['', '️🧡', '💛', '💚', '💙', '💜']:
await message.edit(heart)
await sleep(0.3)