From 6c30e8931286d237b099d3c3a243e6a872ca4c88 Mon Sep 17 00:00:00 2001 From: Bandie Yip Kojote Date: Sat, 18 Jun 2016 13:18:34 +0200 Subject: [PATCH] Better help text. --- PagerBot.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/PagerBot.py b/PagerBot.py index 3814a14..b2d5cc7 100644 --- a/PagerBot.py +++ b/PagerBot.py @@ -116,6 +116,15 @@ while 1: time.sleep(0.5) ircsock.send( "PRIVMSG %s Use \"/msg %s &pager (urgent) \" to page someone.\r\n" % (usernick, NICK)) + time.sleep(0.2) + ircsock.send( + "PRIVMSG %s Examples:\r\n" % (usernick)) + time.sleep(0.2) + ircsock.send( + "PRIVMSG %s \t/msg %s &pager melli17 This is a not so urgent message.\r\n" % (usernick, NICK)) + time.sleep(0.2) + ircsock.send( + "PRIVMSG %s \t/msg %s &pager urgent melli17 This is an urgent message!\r\n" % (usernick, NICK)) time.sleep(0.5) ircsock.send( "PRIVMSG %s Call %s if you want to add yourself to the pager phonebook.\r\n" % (usernick, OWNERNAME))