From bebd74ffc0464fa903eacbcfc9404871980e5dbc Mon Sep 17 00:00:00 2001 From: tj Date: Wed, 29 Sep 2010 09:55:31 +0200 Subject: [PATCH] Updating readme for Password support --- README.markdown | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 9ef1bee..5ccd47d 100644 --- a/README.markdown +++ b/README.markdown @@ -50,8 +50,11 @@ AddCallback Example Commands -------- + irc.IRC("", "") //Create new ircobj + ircobj.Password = "[server password]" + ircobj.Connect("irc.someserver.com:6667") //Connect to server ircobj.Sendraw("") //sends string to server. Adds \r\n ircobj.Join("#channel [password]") ircobj.Privmsg("#channel", "msg") ircobj.Privmsg("nickname", "msg") - ircobj.Notice("nickname or #channel", "msg") + ircobj.Notice("", "msg")