N3M3S1S commented on a Page, Channel Access Command For Bots  -  Oct 07, 2010

Its okay, that's why I posted that chunk for you, so you could learn. Not bad for the first time. But now your snippet has another fatal error. You forgot the "o" in on TEXT :P You can also combine the if ($nick isop $chan) and if (%access == on) into one line. Like this:

on @*:TEXT:!access*:#: {
  if ($nick isop $chan) && (%access == on) {
    if ($2 == add) { 
      cs access $chan add $3 $4
      notice $chan $3 Is added to Level $4
    }
    elseif ($2 == del) { 
      cs access $chan del $3
      notice $chan $3 Deleted from Access list
    }
    elseif ($2 == list) { 
      cs access $chan list 
      set %anick $nick
    }
    else { halt }
  }
}
 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.