From 3134e9863e3ca749c22ac634b67714735921599e Mon Sep 17 00:00:00 2001 From: hgw Date: Mon, 2 Oct 2023 02:14:36 +0000 Subject: [PATCH] almost every part of that last commit was wrong --- README.md | 6 +++--- bot.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1a09192..3c11dbe 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ cold hard bot for cold hard chats - $flood [AMOUNT] [TEXT] - Floods the channel with a specific line x amount of times - $ctcpflood [TARGET] [TEXT (one word)] [AMOUNT] - Sends x amount of CTCP requests to a target. - $sneed - Pastes the Sneed's Feed and Seed copypasta. -- $rspam [LINES, max=100000)] - Spams x lines of random characters. -- $uspam [LINES, max=100000)] - Spams x lines of random unicode characters of varying length. +- $rspam [LINES (def=100, max=100000)] - Spams x lines of random characters. +- $uspam [LINES (def=100, max=100000)] - Spams x lines of random unicode characters of varying length. - $art [IMAGE URL (png/jpg)] - Creates IRC art using a source image. -- $godwords [AMOUNT (def=50, max=100000))] - Generate x amount of random words. Inspired by TempleOS. +- $godwords [AMOUNT (def=50, max=100000)] - Generate x amount of random words. Inspired by TempleOS. ## Deployment diff --git a/bot.js b/bot.js index 040bf86..09759ab 100644 --- a/bot.js +++ b/bot.js @@ -44,10 +44,10 @@ async function help(chan) { bot.say(chan, "$flood [AMOUNT] [TEXT] - Floods the channel with a specific line x amount of times") bot.say(chan, "$ctcpflood [TARGET] [TEXT (one word)] [AMOUNT] - Sends x amount of CTCP requests to a target.") bot.say(chan, "$sneed - Pastes the Sneed's Feed and Seed copypasta.") - bot.say(chan, "$rspam [LINES (def=50, max=100000)] - Spams x lines of random characters") - bot.say(chan, "$uspam [LINES (def=50, max=100000))] - Spams x lines of random unicode characters of varying length") + bot.say(chan, "$rspam [LINES (def=100, max=100000)] - Spams x lines of random characters") + bot.say(chan, "$uspam [LINES (def=100, max=100000))] - Spams x lines of random unicode characters of varying length") bot.say(chan, "$art [IMAGE URL (png/jpg)] - Creates IRC art using a source image.") - bot.say(chan, "$godwords [AMOUNT (def=50, max=100000))] - Generate x amount of random words. Inspired by TempleOS.") + bot.say(chan, "$godwords [AMOUNT (def=50, max=100000)] - Generate x amount of random words. Inspired by TempleOS.") } async function flood(chan, arg) {