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

9
a/index.js Normal file
View File

@@ -0,0 +1,9 @@
import { hangmanActive } from "../forca/index.js";
export default async function ({ msg }) {
if (msg.body.trim().toLowerCase() !== "a") return;
if (msg.args.length > 1) return;
if (hangmanActive) return;
await msg.reply("B!");
}

8
a/manyplug.json Normal file
View File

@@ -0,0 +1,8 @@
{
"name": "a",
"author": "freakk.dev",
"version": "1.0.0",
"category": "humor",
"service": false,
"dependencies": {}
}