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")