forked from Supositware/Haha-Yes
can use the random thingy
This commit is contained in:
parent
2cf6d9543b
commit
d66fef2b55
3 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
const emojiCharacters = require('../../emojiCharacters');
|
||||
const rand = require('../../rand.js');
|
||||
|
||||
class EmotesayCommand extends Command {
|
||||
constructor() {
|
||||
|
@ -25,7 +26,9 @@ class EmotesayCommand extends Command {
|
|||
let text = args.text;
|
||||
if (!text)
|
||||
return;
|
||||
|
||||
|
||||
text = rand.random(text, message);
|
||||
|
||||
message.delete();
|
||||
let emojiArray = [];
|
||||
for (let i = 0; i < text.length; i++)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
const textToSpeech = require('@google-cloud/text-to-speech');
|
||||
const rand = require('../../rand.js');
|
||||
const gclient = new textToSpeech.TextToSpeechClient();
|
||||
const fs = require('fs');
|
||||
|
||||
|
@ -26,6 +27,8 @@ class TtsCommand extends Command {
|
|||
async exec(message, args) {
|
||||
let text = args.text;
|
||||
|
||||
text = rand.random(text, message);
|
||||
|
||||
// Construct the request
|
||||
const request = {
|
||||
input: { text: text },
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
const { Command } = require('discord-akairo');
|
||||
const textToSpeech = require('@google-cloud/text-to-speech');
|
||||
const rand = require('../../rand.js');
|
||||
const gclient = new textToSpeech.TextToSpeechClient();
|
||||
const fs = require('fs');
|
||||
|
||||
|
@ -26,6 +27,8 @@ class TtsvcCommand extends Command {
|
|||
|
||||
async exec(message, args) {
|
||||
let text = args.text;
|
||||
|
||||
text = rand.random(text, message);
|
||||
|
||||
// Construct the request
|
||||
const request = {
|
||||
|
|
Loading…
Reference in a new issue