How do I auto identify to NickServ when it asks me for my password?
You will need to use the on NOTICE event. As with all events, this scripting marvel goes into your remote file. It will allow you to receive the nickserv notice, then respond with your identify command. on ^*:NOTICE:*nick is owned by someone*:?:{ if ($nick == nickserv) { nickserv identify password } } Above, replace the word password with your nickserv identify password or you may use a variable that contains your password for every time a nickserv notice is sent containing the words “Nick is owned by someone”.