mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-20 12:21:38 +01:00
created timeout function and minor changes
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
import { Command, doTimeout, sendMessage } from ".";
|
||||
import { Command, sendMessage } from ".";
|
||||
import { timeout } from "../lib/timeout";
|
||||
|
||||
// Remake of the !yabai command in ttv/kiara_tv
|
||||
export default new Command('yabai',
|
||||
['yabai', 'goon'],
|
||||
['moderator:manage:banned_users'],
|
||||
async msg => {
|
||||
async (msg, user) => {
|
||||
const rand = Math.floor(Math.random() * 100) + 1;
|
||||
if (rand < 25) sendMessage(`${rand}% yabai! GIGACHAD`, msg.messageId);
|
||||
else if (rand < 50) sendMessage(`${rand}% yabai POGGERS`, msg.messageId);
|
||||
@@ -12,7 +13,7 @@ export default new Command('yabai',
|
||||
else if (rand < 90) sendMessage(`${rand}% yabai AINTNOWAY`, msg.messageId);
|
||||
else {
|
||||
sendMessage(`${msg.chatterDisplayName} is ${rand}% yabai CAUGHT`);
|
||||
doTimeout(msg.chatterId, 'TOO SUS');
|
||||
timeout(user, "TOO YABAI!", 60);
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user