diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-09-12 21:09:47 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-09-12 21:09:47 +0200 |
commit | e0747a39f7ad3c875a52b8f95d87a5d5731c5b35 (patch) | |
tree | 7d173c33f65c4333a36cef733f163788ace21cf7 /bot.lua | |
parent | c340bee4379b4160897a899534980c9593d2b537 (diff) | |
download | furrybot-e0747a39f7ad3c875a52b8f95d87a5d5731c5b35.tar.xz |
Add new command (details censored)
Diffstat (limited to 'bot.lua')
-rw-r--r-- | bot.lua | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -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 |