diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-12 20:46:06 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-05-12 20:46:06 +0200 |
commit | 101ed9fa2c470ebb27f4c120661f92807cb59695 (patch) | |
tree | db55357d6a8ec47bfccac45525c92cb2d1a40f05 /bot.lua | |
parent | 6283e340ac1c1641e6f9c740a50f75fbc6a8bdb6 (diff) | |
download | furrybot-101ed9fa2c470ebb27f4c120661f92807cb59695.tar.xz |
Add smellfeet command
Diffstat (limited to 'bot.lua')
-rw-r--r-- | bot.lua | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -242,6 +242,12 @@ furrybot.commands.slap = furrybot.interactive_rpg_command("slaps") furrybot.commands.beat = furrybot.interactive_rpg_command("beats") furrybot.commands.lick = furrybot.interactive_rpg_command("licks") +furrybot.commands.smellfeet = furrybot.request_command(function(name, target) + furrybot.ping_message(target, name .. " wants to smell your feet. Type !accept to accept or !deny to deny.", furrybot.colors.system) +end, function(name, target) + furrybot.ping_message(name, " you are smelling " .. target .. "'s feet. They are kinda stinky!", 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) |