1.0.3 • Published 2 years ago

create_discordts_bot_v13 v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Installation

npx:

// Creates a folder inside the route
npx create_discordts_bot_v13 folder_name
// Clone in the actual route without creating a new folder
npx create_discordts_bot_v13 .

Execution

npm start //run aplication with ts
// or
npm tsc //compile typescript to javascript
npm start //run index.js compiled file

Usage

.env:

BOT_TOKEN= //fill with the token of your bot

.config:

// Modify this parameter as you want
module.exports = {
	prefix: '!', // prefix of your bot
	devs: ['403917639673577482'], // this is for the commands in the category of dev
	colors: {
		// Values for colors for embeds
		default: '#00AE86',
		error: '#eb4034',
	},
	emotes: {
		// Values of emotes
		error: '⚠️',
		success: '✅',
	},
};