diff options
author | Livio Recchia <recchialivio@libero.it> | 2020-04-06 19:59:44 +0200 |
---|---|---|
committer | Livio Recchia <recchialivio@libero.it> | 2020-04-06 19:59:44 +0200 |
commit | f7b7ec66d47369e735c297372a1956038d9eed39 (patch) | |
tree | a37bf415734a1285c31a80a1e2134cc1f2c52e38 /plugins | |
parent | 1b38fbbc9ae967c1914d4a9ab6b29bc1e46cacf5 (diff) | |
download | manachat-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-x | plugins/manaboy.py | 6 |
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() |