-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands.ts
96 lines (93 loc) · 3.14 KB
/
commands.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// const infoCommands = {
// category: "INFO",
// commands: [
// {
// name: "start",
// description: "Mensagem de Boas Vindas",
// aliases: [],
// func: (bot: IBot, message: IMessage) => {}
// },
// {
// name: "ajuda",
// description: "Menu de comandos. Envie um comando para saber mais sobre o mesmo, ex: $prefix$command $command",
// aliases: ["menu", "cmd"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "test",
// description: "teste",
// aliases: [],
// func: (_: IBot, message: IMessage) => {}
// },
// {
// name: "bug",
// description: "",
// aliases: [],
// func: (bot: IBot, message: IMessage, args: string[], _: any, chat: IChatMetadata) => {}
// },
// ]
// }
// const mediaCommands = {
// category: "MIDIA",
// commands: [
// {
// name: "music",
// description: "Envia uma musica a partir de um link ou nome",
// aliases: ["música", "music"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "video",
// description: "Envia um video a partir de um link ou nome",
// aliases: ["vid"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "letra",
// description: "Pesquisa a letra de uma música",
// aliases: ["lyrics"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "thumbnail",
// description: "Baixa e envia uma thumbnail de um video no youtube",
// aliases: ["vid"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// ]
// }
// const funCommands = {
// category: "DIVERSAO",
// commands: [
// {
// name: "sticker",
// description: "Converte mídia em figurinhas",
// aliases: ["s", "fig"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "slot",
// description: "Slot machine",
// aliases: [],
// func: (bot: IBot, message: IMessage) => {}
// },
// {
// name: "chance",
// description: "Chance de..., exemplo: $prefixchance de eu ganhar 1 real",
// aliases: [],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "casal",
// description: "Escolhe um casal aleatorio",
// aliases: [],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// {
// name: "gpt",
// description: "Gera um texto",
// aliases: ["prompt"],
// func: (bot: IBot, message: IMessage, args: string[]) => {}
// },
// ]
// }