From: Elias Fleckenstein Date: Sun, 12 Sep 2021 19:09:47 +0000 (+0200) Subject: Add new command (details censored) X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=e0747a39f7ad3c875a52b8f95d87a5d5731c5b35;p=furrybot.git Add new command (details censored) --- diff --git a/bot.lua b/bot.lua index d4e9826..2a1943f 100644 --- a/bot.lua +++ b/bot.lua @@ -189,6 +189,10 @@ function furrybot.money(money, color) return furrybot.colors.money .. "$" .. money .. color end +function furrybot.get_ascii_dick(name) + return minetest.rainbow(furrybot.repeat_string("=", furrybot.strrandom(name, 31242, 2, 10)) .. "D") +end + -- Commands -- system @@ -262,6 +266,10 @@ end) furrybot.commands.bang = furrybot.commands.sex furrybot.commands.fuck = furrybot.commands.sex +furrybot.commands.cum = function(name) + furrybot.send(name .. " is cumming: " .. furrybot.get_ascii_dick(name) .. C("#FFFFFF") .. furrybot.repeat_string("~", math.random(1, 10)), furrybot.colors.rpg) +end + furrybot.commands.marry = furrybot.request_command(function(name, target) if storage:contains(name .. ".partner", target) then furrybot.error_message(name, "You are already married to", storage:get_string(name .. ".partner")) @@ -388,9 +396,7 @@ end function furrybot.commands.dicksize(name, target) target = target or name - local size = furrybot.strrandom(target, 31242, 2, 10) - local dick = furrybot.repeat_string("=", size) .. "D" - furrybot.send(minetest.rainbow(dick) .. furrybot.colors.system .. " ← " .. furrybot.ping(target, furrybot.colors.system) .. "'s Dick", C("#FF4DE1")) + furrybot.send(furrybot.get_ascii_dick(target) .. furrybot.colors.system .. " ← " .. furrybot.ping(target, furrybot.colors.system) .. "'s Dick", C("#FF4DE1")) end furrybot.commands.cocksize = furrybot.commands.dicksize