diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-12 20:55:46 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-12 20:55:46 +0200 |
commit | 15741e9da7b220d6d33e0e5bef61ba914c57283f (patch) | |
tree | bc67a4352513807f6ee22830b6b5ec567055c0c5 /bot.lua | |
parent | 101ed9fa2c470ebb27f4c120661f92807cb59695 (diff) | |
download | furrybot-15741e9da7b220d6d33e0e5bef61ba914c57283f.tar.xz |
Add some lewd command
Diffstat (limited to 'bot.lua')
-rw-r--r-- | bot.lua | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -248,6 +248,12 @@ end, function(name, target) furrybot.ping_message(name, " you are smelling " .. target .. "'s feet. They are kinda stinky!", furrybot.colors.rpg) end) +furrybot.commands.blowjob = furrybot.request_command(function(name, target) + furrybot.ping_message(target, name .. " wants to suck your dick. Type !accept to accept or !deny to deny.", furrybot.colors.system) +end, function(name, target) + furrybot.send(name .. " is sucking " .. target .. "'s cock. ˣoˣ IT'S SO HUGE", furrybot.colors.rpg) +end) + furrybot.commands.sex = furrybot.request_command(function(name, target) furrybot.ping_message(target, name .. " wants to have sex with you. Type !accept to accept or !deny to deny.", furrybot.colors.system) end, function(name, target) |