Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.18 KB

README.md

File metadata and controls

51 lines (38 loc) · 1.18 KB

Basic Discord Bot

Bot Discord dengan beberapa fungsionalitas dasar :

  • Reaction Roles
  • Ticketing
  • Youtube Channel Notification
  • Invite Tracker

Dibuat menggunakan Discord.js v13

Cara Instalasi

Bot ini memerlukan Node.JS versi 16+

git clone https://github.com/idnfata/basic-discord-bot
cd basic-discord-bot
npm i

Konfigurasi

//config.json
{
  "clientId": "id of the bot",
  "token": "Discord bot's token",

  "parentOpened": "id of the category when a ticket is opened",
  "Category1": "Name of the first support category",
  "Category2": "Name of the second support category",
  "Category3": "Name of the third support category",

  "roleSupport": "id of the support team role",
  
  "logsTicket": "id of the channel for ticket logs",
  "ticketChannel": "id of the channel where the embed is sent to create a ticket"
}
  • You can change category emojis in intractionCreate.js @ line 50.
  • Make sure the ticketChannel is empty.

Deployment

node commands.js # To deploy slash commands in all the servers the bot is in
node index.js # To start the ticket-bot

Made with 💜 by idnfata.

Code Inspired From @Sayrix