summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorLivio Recchia <recchialivio@libero.it>2020-04-06 19:59:44 +0200
committerLivio Recchia <recchialivio@libero.it>2020-04-06 19:59:44 +0200
commitf7b7ec66d47369e735c297372a1956038d9eed39 (patch)
treea37bf415734a1285c31a80a1e2134cc1f2c52e38 /plugins
parent1b38fbbc9ae967c1914d4a9ab6b29bc1e46cacf5 (diff)
downloadmanachat-f7b7ec66d47369e735c297372a1956038d9eed39.tar.gz
manachat-f7b7ec66d47369e735c297372a1956038d9eed39.tar.bz2
manachat-f7b7ec66d47369e735c297372a1956038d9eed39.tar.xz
manachat-f7b7ec66d47369e735c297372a1956038d9eed39.zip
Added puny features to manaboy
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/manaboy.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/manaboy.py b/plugins/manaboy.py
index c01a8ab..f5c3d80 100755
--- a/plugins/manaboy.py
+++ b/plugins/manaboy.py
@@ -445,12 +445,16 @@ death_words = [
"Dammit!!! Why me???",
"Nirvana wait for me!",
"Well, at least I will have no more taxes to pay.",
+ "I need another drink...",
+ "I don't want to see!",
+ "See you on the other side!",
+ "Don't worry: I've pressed the up button first.",
]
@extends('smsg_being_remove')
def bot_dies(data):
if data.id == charserv.server.account:
- mapserv.cmsg_chat_message(random.choice(bye_answers))
+ mapserv.cmsg_chat_message(random.choice(death_words))
time.sleep(5)
mapserv.cmsg_player_respawn()