Skip to content

Instantly share code, notes, and snippets.

@karamankaan
Created December 6, 2019 20:07
Show Gist options
  • Save karamankaan/546fa8c73b58f22b9d08be407a4dafa0 to your computer and use it in GitHub Desktop.
Save karamankaan/546fa8c73b58f22b9d08be407a4dafa0 to your computer and use it in GitHub Desktop.
const Discord = require("discord.js");
const client = new Discord.Client();
const db = require('quick.db');
exports.run = async (client, message, args) => {
var a = db.fetch(`kayit_${message.guild.id}`)
if (!a) {
} else {
db.delete(`kayit_${message.guild.id}`)
}
}
exports.conf = {
enabled: true,
guildOnly: true,
aliases: ["krol-temizle", "kayıtrol-temizle"],
permLevel: 0
};
exports.help = {
name: "kayıtrol-sıfırla",
description: "s",
usage: "s"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment