-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathbio.js
More file actions
23 lines (21 loc) · 797 Bytes
/
bio.js
File metadata and controls
23 lines (21 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @author Zeeshan Altaf
* @warn Do not edit code or edit credits
* @Dont Change This Credits Otherwisw Your Bot Lol
*/
module.exports.config = {
name: "bio",
version: "1.0.0",
hasPermssion: 2,
credits: "ZeeshanAltaf",
description: "Change bot's bio",
commandCategory: "admin",
usages: "bio [text]",
cooldowns: 5
}
module.exports.run = async ({ api, event, global, args, permssion, utils, client, Users }) => {
api.changeBio(args.join(" "), (e) => {
if(e) api.sendMessage("Bero cmnd Theak Likh *★᭄𝗖𝗿𝗲𝗱𝗶𝘁'𝘀 ཫ༄𒁍≛⃝𝝛𝝣𝝚𝘚𝝜𝝠N𝝠ɭƬ𝝠F" + e, event.threadID); return api.sendMessage("Jani ap ka new bio hai \n"+args.join(" "), event.threadID, event.messgaeID)
}
)
}