v3.2 push 1 NOT WORKING YET!!!
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
const discord = require('discord.js')
|
||||
const bot = require('../../index')
|
||||
const client = bot.client
|
||||
const config = bot.config
|
||||
const log = bot.errorLog.log
|
||||
const l = bot.language
|
||||
const storage = bot.storage
|
||||
const tsconfig = bot.tsconfig
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {String} name
|
||||
* @param {String} id
|
||||
* @param {Number} rawprocesstime milliseconds
|
||||
* @param {discord.User} user
|
||||
*/
|
||||
exports.beingprocessed = (name,id,rawprocesstime,user) => {
|
||||
|
||||
const newtime = new Date(new Date().getTime() + rawprocesstime)
|
||||
|
||||
const processtime = "<t:"+newtime.getTime().toString().substring(0,newtime.getTime().toString().length-3)+":R>"
|
||||
|
||||
const embed = new discord.EmbedBuilder()
|
||||
.setTitle("🧾 Transcript")
|
||||
.setColor(config.main_color)
|
||||
.setAuthor({name:user.tag,iconURL:user.displayAvatarURL()})
|
||||
.setFooter({text:name})
|
||||
|
||||
.setDescription("`This transcript is being processed...`\nPlease wait!\n\nEstimated time: "+processtime)
|
||||
|
||||
return embed
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {String} name
|
||||
* @param {String} id
|
||||
* @param {String} url
|
||||
* @param {discord.User} user
|
||||
*/
|
||||
exports.tsready = (name,id,url,user) => {
|
||||
const embed = new discord.EmbedBuilder()
|
||||
.setTitle("🧾 Transcript")
|
||||
.setColor(config.main_color)
|
||||
.setAuthor({name:user.tag,iconURL:user.displayAvatarURL()})
|
||||
.setFooter({text:name})
|
||||
.setURL(url)
|
||||
|
||||
.setDescription("The transcript is available [here]("+url+")")
|
||||
|
||||
return embed
|
||||
}
|
||||
Reference in New Issue
Block a user