plugins.tell: Change responses (thanks Flo)

Thu, 20 May 2010 13:45:53 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 20 May 2010 13:45:53 +0100
changeset 12
d7ce8ba2c462
parent 11
7bb53dcf93d4
child 13
ff9790b827b7

plugins.tell: Change responses (thanks Flo)

plugins/tell.lua file | annotate | diff | comparison | revisions
--- a/plugins/tell.lua	Fri May 14 14:23:03 2010 +0100
+++ b/plugins/tell.lua	Thu May 20 13:45:53 2010 +0100
@@ -21,16 +21,16 @@
 						tellings[nick] = {};
 					end
 					tellings[nick][#tellings[nick] + 1] = {from=command.sender.nick, msg=msg};
-					return "Ok! Will tell " .. nick .. " what you have said!";
+					return "Ok!";
 				else
 					if nick == command.sender.nick then
-						return "Are you going crazy!? You are " .. nick .. "!";
+						return "Tell yourself.";
 					else
-						return "Aehm?! ... " .. nick .. " is currently online!";
+						return "" .. nick .. " is currently online!";
 					end
 				end
 			else
-				return "Sorry, but this command only makes sense if you execute it in a groupchat.";
+				return "This command is only available in groupchats.";
 			end
 		end);
 

mercurial