From 9fd5da692c91ce1faceef70344fc900689098d68 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Sun, 3 Jan 2016 14:43:40 -0500 Subject: Add $when argument to .respond --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 694c285..616246d 100644 --- a/README.md +++ b/README.md @@ -283,9 +283,10 @@ to the user/channel specified as the first argument. ```perl6 $irc.respond: :where<#zofbot> - :what('Hallo how are you?!') + :what("Hallo how are you?! It's been 1 hour!") :how :who + :when( now + 3600 ) ; ``` Generates a response based on the provided arguments, which are as follows: @@ -326,6 +327,16 @@ valid in any way). If the `where` argument is set to a name of a channel, then the method will modify the `what` argument, by prepending `$who, ` to it. +### `when` + +```perl6 + $irc.respond: :when(now+5) ... # respond in 5 seconds + $irc.respond: :when(DateTime.new: :2016year :1month :2day) ... +``` +**Optional**. Takes a `Dateish` or `Instant` value that specifies when the +response should be generated. If omited, the response will be generated +as soon as possible. **By default** is not specified. + ## `.ssay` ```perl6 -- cgit v1.1