Sorasyn commented on a Page, Some Bot Commands   -  May 11, 2012

I'm having a hard time believing this actually runs as intended just from the way it's setup.

  if ($nick($chan,$nick,&~))  
  msg $chan ---> Echo Bot Disconnected <--  
  { /quit Disconnected }

Mainly because you initiate a bracket out of the blue with no preceding statement.

$nick(#,N/Nick,aohvr) only supports a mixture of "aohvr" a = all nicks, o = ops, h = halfop, and so on. However to get rank symbols like you've shown is an easy adjustment: $nick($chan,$nick).pnick "The pnick property returns the nickname in a .@%+nick format." Right out of the help file. :)

This is how it should look.

if ($nick($chan,$nick,&~)) {
   msg $chan ---> Echo Bot Disconnected <---
   quit Disconnected
}

Just a few suggestions, hope it helps.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.