Skip to content

Instantly share code, notes, and snippets.

@TecEash1
TecEash1 / BotAIAskModal.js
Created February 24, 2024 19:33
Discord Bot AI. Powered by Gemini.
/**
* @file BotAI Ask Modal.
* @author TechyGiraffe999
* @license Apache License 2.0
*/
/**
* @type {import("../../../../typings").ModalInteractionCommand}
*/
const fs = require('fs').promises;
@TecEash1
TecEash1 / AskModal.js
Last active February 25, 2024 04:33
Free Discord Bot AI. Powered by GPT-3.5.
/**
* @file BotNameAI Ask Modal.
* @author TechyGiraffe999
* @license Apache License 2.0
*/
/**
* @type {import("../../../../typings").ModalInteractionCommand}
*/
const fs = require('fs').promises;
@TecEash1
TecEash1 / advancement.js
Last active February 16, 2024 18:00
A Discord Minecraft Advancement Generator Slash Command
/**
* @file Minecraft Advancement Generator Slash Command.
* @author TechyGiraffe999
* @license Apache License 2.0
*/
const { EmbedBuilder, SlashCommandBuilder } = require("discord.js");
module.exports = {
data: new SlashCommandBuilder()
@TecEash1
TecEash1 / NSFWInviteCreate.js
Last active April 22, 2024 18:38
NSFW Invite Link Blocker for Discord
/**
* @file NSFW Disabler Create
* @author TechyGiraffe999
* @license Apache License 2.0
*/
// Declares constants (destructured) to be used in this file.
const { Collection, ChannelType, Events, EmbedBuilder } = require("discord.js");
const { owner } = require("../../config.json");
const fetch = require("node-fetch");