first commit

This commit is contained in:
synt-xerror
2026-04-14 21:15:05 -03:00
commit eecef0be88
44 changed files with 1372 additions and 0 deletions

12
obrigado/index.js Normal file
View File

@@ -0,0 +1,12 @@
import { CMD_PREFIX } from "../../config.js";
import { createPluginI18n } from "../../utils/pluginI18n.js";
const { t } = createPluginI18n(import.meta.url);
const triggers = ["obrigado", "valeu", "brigado", "obrigada", "thx", "thanks"];
export default async function ({ msg }) {
if (!triggers.some(g => msg.is(CMD_PREFIX + g))) return;
await msg.reply(t("reply"));
}