Quote:
Code:
ON *:text:flood_protect on:?: { if ($nick isop $chan) { .enable #flood_protect | .msg $nick Text flood protection is now ON } ELSE { /msg $nick You do not have access to this command } }
ON *:text:flood_protect off:?: { if ($nick isop $chan) { .disable #flood_protect | .msg $nick Text flood protection is now OFF } ELSE { /msg $nick You do not have access to this command } } 


You need to put pipes before ELSE

like } | ELSE {

or as you stated, use a newline, which in this case will improve readability and error checkign considerably.


Greetz