Quote:
how can i make this better for when im opped

Code:
on *:OP:#: { 
  mode #f +b  81.101.141.64
  mode #w +b  81.101.141.64
  mode #l +b  81.101.141.64

}



thanks


considering you want to do a multi ban in different channels you might want to consider if statements... else youll keep getting the "Your not op in this channel" message

Code:
on ME:OP:#:{
  if $me isop #f { mode #f +b 81.101.141.64 } 
  if $me isop #w { mode #w +b 81.101.141.64 }
  if $me isop #l { mode #l +b 81.101.141.64 }
}


Why did I use all those if statements? well basically the script won't work if your not op on that specific chan now theres various ways you can go about it like a IF, Elseif and a Else but this routine is basic


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }