Git Product home page Git Product logo

filewake_bottemplate's Introduction

BotTemplate for you

coding environment

Node.js v16.10.0 Discord.js V13.7.0

At the beginning

npm install

Run the bot

node index.js

Result : SumCheck starts from the top file in order

↓Something like this

image

When SumCheck is over and Ready to Bot comes out, it's a success.

CommandFile example

Normal command :

module.exports = {
 name: "CommandName",
 description: "Description",
 
 run: (message,args,client) => {
    message.reply('This is that.')
  }
}

SlashCommand (Recommendation) :

(The option has not been implemented yet. sry ;) )

module.exports = { 
 slash: {
  name: "CommandName",
  description: "Description"
 },
 run: (interaction, client) => {
    interaction.reply('Hi')
  }
}

Trouble Shooting of SumCheck

[SumCheck] Infomation : Command Name (CommandName) is not description.

This is an error thrown when no description is attached in the command file. There is nothing that doesn't work, but it may not appear in the help command, so be sure to attach a description.

[SumCheck] Warning : Commandfile (fileName) is not js file. Please check this.

This is a warning thrown when the command file contains something that does not have a js extension. This bot only supports js extensions.

[SumCheck] Reg : Registered the (CommandName) Command.

This is a registed the slashcommand send a infomation in console.

[SumCheck] Warning : Commandfile in not RUN function. Please check this.

This is an error that occurs when the command file is set normally but the execution part does not exist.

filewake_bottemplate's People

Contributors

akikaki-bot avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.