The Problem Is That when im using Auto Identify ( Nickserv module ) There is Error When its trying to identify to nickserv ( i mean DALNET Services.. ) Here we go:
-NickServ- Your nick will be changed in 60 seconds if you do not comply.
-
-NickServ- Error! "/msg NickServ" is no longer supported. Use "/msg nickserv@services.dal.net" or "/nickserv" instead.
-
I Got Problem and Changed The Nickserv.cpp. here is the line Which I Changed:
Code: Select all
&& sMessage.AsUpper().find("IDENTIFY") != CString::npos
&& sMessage.find("help") == CString::npos) {
PutIRC("PRIVMSG nickserv :IDENTIFY " + m_sPass);
Code: Select all
&& sMessage.AsUpper().find("IDENTIFY") != CString::npos
&& sMessage.find("help") == CString::npos) {
PutIRC("PRIVMSG nickserv@services.dal.net :IDENTIFY " + m_sPass);
I killed The Process and Started again but it gave me the same error.. ( - Error! "/msg NickServ" )
Does Anyone has whats the clue of it??