Skip to content

Commit

Permalink
WhatsAsena: Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufusta committed Jan 1, 2021
1 parent aac5536 commit d72cae7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="https://i.hizliresim.com/6Bbj7i.jpg" width="200" height="200">
<img src="https://i.hizliresim.com/mm1NBs.jpg" width="200" height="200">
<h1>🐺 WhatsAsena</h1>
</div>
<p align="center">
Expand Down Expand Up @@ -57,7 +57,7 @@ If you are concerned about security, you can install it on your own computer. If
### Is it paid?
**Of course not.** It will never happen. But you can donate to us. You can reach me via [Telegram](https://t.me/fusuf) .

### What does Asena mean?
### What does Asena mean?
[Asena](https://tr.wikipedia.org/wiki/Asena), comes from Turkish mythology. According to Turkish mythology, Asena is a she-wolf that plays an important role.

### ⚠️ Warning!
Expand All @@ -68,12 +68,12 @@ Absolutely, Asena executives do not accept responsibility.
By establishing the Asena, you are deemed to have accepted these responsibilities.
```

## Geliştiriciler
## Developers

[![Yusuf Usta](https://github.com/quiec.png?size=100)](https://quiec.tech) | [![Alperen Ç](https://github.com/xacnio.png?size=100)](https://github.com/xacnio)
---|---
[Yusuf Usta](https://t.me/fusuf) | [Alperen Ç](https://t.me/xacnio)
Base, Development, Idea, Modules | Bug Fixes, Modules
[![Yusuf Usta](https://github.com/quiec.png?size=100)](https://quiec.tech) | [![Alperen Ç](https://github.com/xacnio.png?size=100)](https://github.com/xacnio)[![Justin Thoms](https://github.com/justinthoms.png?size=100)](https://github.com/justinthoms)[![CW4RR10R](https://github.com/CW4RR10R.png?size=100)](https://github.com/CW4RR10R)[![DevXenon](https://github.com/phaticusthiccy.png?size=100)](https://github.com/phaticusthiccy)
---|---|---|---|---
[Yusuf Usta](https://t.me/fusuf) | [Alperen Ç](https://t.me/xacnio) | [justinthoms](https://t.me/Mr_justinthomas) | [CW4RR10R](https://github.com/CW4RR10R) | [DevXenon](https://github.com/phaticusthiccy)
Author, Base, Bug Fixes, Modules | Bug Fixes, Modules | Bug Fixes, Modules, Idea | Modules | Modules, Idea

## Thanks To
- [@adiwajshing](https://github.com/adiwajshing) for coded [Baileys](https://github.com/adiwajshing/Baileys)
Expand All @@ -85,4 +85,4 @@ Base, Development, Idea, Modules | Bug Fixes, Modules
This project is protected by `GNU General Public Licence v3.0` license.

### Disclaimer
`WhatsApp` name, its variations and the logo are registered trademarks of Facebook. We have nothing to do with the registered trademark
`WhatsApp` name, its variations and the logo are registered trademarks of Facebook. We have nothing to do with the registered trademark
4 changes: 2 additions & 2 deletions plugins/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ Asena.addCommand({pattern: 'stop ?(.*)', fromMe: true, desc: Lang.STOP_DESC, usa
del = await FilterDb.deleteFilter(message.jid, match[0].replace(/['"]+/g, ''));

if (!del) {
await message.client.sendMessage(message.jid,Lang.ALREADY_NO_FILTER)
await message.client.sendMessage(message.jid,Lang.ALREADY_NO_FILTER, MessageType.text)
} else {
await message.client.sendMessage(message.jid,Lang.DELETED)
await message.client.sendMessage(message.jid,Lang.DELETED, MessageType.text)
}
}));

Expand Down
19 changes: 19 additions & 0 deletions plugins/up_down.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* Copyright (C) 2020 Yusuf Usta.
Licensed under the GPL-3.0 License;
you may not use this file except in compliance with the License.
WhatsAsena - Yusuf Usta
*/

const Asena = require('../events');
const {MessageType, Mimetype} = require('@adiwajshing/baileys');
const got = require('got')
const fs = require('fs')
const Language = require('../language');
/*const Lang = Language.getString('up_down');
Asena.addCommand({pattern: 'download ?(.*)', fromMe: true, desc: Lang.MEMES_DESC, usage: 'meme top;bottom'}, (async (message, match) => {
if (message.reply_message === false) return await message.sendMessage(Lang.NEED_REPLY);
}));*/

0 comments on commit d72cae7

Please sign in to comment.