10q both very much!
Well...I still don't understand stuff smirk
I wrote the following in the remote:
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} }
#flood_protect on
ON @1:TEXT:*:#:{ .auser 200 $nick | /timer2 1 3 .ruser $nick }
ON @+200:TEXT:*:#:{ .timer2 off | .auser 201 $nick | .timer3 1 3 .ruser 200 $nick }
ON @+201:TEXT:*:#:{ .timer3 off | /auser 202 $nick | /timer4 1 3 /ruser 201 $nick }
ON @+202:TEXT:*:#:{ .timer4 off | .ruser $nick | .kick $chan $nick Text Flood Detected! }
#flood_protect end

and this in the popup:
Code:
Turn flood_protect on:{ .enable #flood_protect }
Turn flood_protect off:{ .disable #flood_protect }


And it isn't working. What is the problem?!

And I still don't know how to give ops the ability to edit a bot's message (as i wrote in the first post).

10x again!

Last edited by x3RiouS; 07/05/04 08:46 PM.