Skip to content

Instantly share code, notes, and snippets.

@Reyz2902
Reyz2902 / toqin
Last active December 31, 2025 08:24
Uploaded via Theresa
/*• Nama Fitur : toqin
• Type : Plugin ESM
• Link Channel : https://whatsapp.com/channel/0029VbBt4432f3ENa8ULoM1J
• Author : Z7
*/
import { Buffer } from "buffer";
const DEFAULT_PROMPT = `
Buat saya memakai kostum Qin Shi Huang dari anime Record of Ragnarok, termasuk desain penutup mata dan pakaian yang dikenakan Qin Shi Huang di dalam anime Record of Ragnarok. Buatkan pose khasnya.
@Reyz2902
Reyz2902 / unblur.js
Created December 30, 2025 01:40
Uploaded via Theresa
const axios = require('axios');
const FormData = require('form-data');
async function Uguu(buffer, filename) {
let form = new FormData();
form.append('files[]', buffer, {
filename
});
let {
data
@Reyz2902
Reyz2902 / theresaai
Created December 15, 2025 07:27
Uploaded via Bot WhatsApp
import axios from 'axios'
const handler = async (m, { text, conn }) => {
if (!text) return m.reply('Masukkan percakapanmu, contoh: Hai theresa, apa kabar?')
if (text.includes('~')) {
return m.reply('Karakter "~" tidak diperbolehkan.')
}
try {
@Reyz2902
Reyz2902 / tofigure.js
Created December 13, 2025 05:59
Uploaded via Theresa
const fs = require('fs');
const axios = require('axios');
const FormData = require('form-data');
/**
* Upload file ke Catbox (binary)
* @param {string} filePath
* @returns {Promise<string>}
*/
async function uploadCatbox(filePath) {
@Reyz2902
Reyz2902 / tiktok
Created December 12, 2025 14:20
Uploaded via Theresa
const axios = require('axios');
const handler = async (m, {
conn,
args,
usedPrefix,
command
}) => {
if (!args[0]) {
return m.reply(`Usage: ${usedPrefix + command} <tiktok_url>`);
@Reyz2902
Reyz2902 / brat.js
Created December 12, 2025 13:06
Uploaded via Bot WhatsApp
const ffmpeg = require('fluent-ffmpeg');
const axios = require('axios');
const { promises: fs } = require('fs');
const path = require('path');
let handler = async (m, { conn, text, usedPrefix, command }) => {
if (!text) {
throw `Please provide some text.\n\n*Example:*\n${usedPrefix + command} Hello World`;
}
@Reyz2902
Reyz2902 / ssweb
Last active December 9, 2025 12:24
Uploaded via Theresa
case "ssweb": {
const url = args[0];
if (!url) {
m.reply('Please provide a URL to take a screenshot of.\n\nExample: .ssweb https://example.com');
break;
}
const targetUrl = url.startsWith('http://') || url.startsWith('https://') ? url : `https://${url}`;
@Reyz2902
Reyz2902 / findsong.js
Created December 9, 2025 09:29
Uploaded via Theresa
const axios = require('axios');
const FormData = require('form-data');
const fs = require('fs');
const {
tmpdir
} = require('os');
const {
join
} = require('path');