[project @ 2005-06-28 09:54:46 by unknown_lamer]
[clinton/bobotpp.git] / bobot++.texinfo
index 2db1f7a..1349ce1 100644 (file)
@@ -820,8 +820,7 @@ The same as if a user typed @code{/msg nick message} to their IRC client.
 
 @defun bot:notice target message
 Sends @var{message} as a NOTICE to @var{target}. @var{target} may be a
-user (nick) or a channel. This returns @code{#t} if the message was
-sent successfull, @code{#f} otherwise.
+user (nick) or a channel. This returns 0 on success.
 @end defun
 
 @node Low Level Message Functions,  , High Level Message Functions, Sending Messages
@@ -835,12 +834,20 @@ before using these. If you have no idea what these do, read rfc 2812
 @code{*unspecified*} always, so don't use the return value for
 anything.
 
-@defun bot:send-CTCP to command message
+@defun bot:send-ctcp to command message
 @code{to} is the target of your CTCP message, @code{command} is the
 CTCP command, and @code{message} is the message (or arguments) of the
 command. Make sure to @code{bot:ctcp-quote} the message!
 @end defun
 
+@defun bot:send-ctcp-reply to command message
+@code{to} is the target of your CTCP reply, @code{command} is the
+CTCP command, and @code{message} is the message (or arguments) of the
+command. Make sure to @code{bot:ctcp-quote} the message!
+
+This is used to reply to a ctcp that the bot has received.
+@end defun
+
 @node Misc Scripting Stuff,  , Sending Messages, Scripting
 @section Misc. Scripting Stuff