Place the code in a new remote file. You can't have multiple text events in the same remote. Only the first one on top will trigger:

This is your original code:
on *:text:*:#:{
...
}

This is my suggestion to you:
on *:text:*:#:{
...
}

You need to either remove the first text event or combine them as one. This is the scenario I can think of that your mIRC won't respond to the code execution.

Another way is to have both text events listen to different triggers:

on *:text:.banall:#:{
on *:text:.banall2:#:{

Then you can have as many as you want in the same remote without any conflict.

Last edited by Tomao; 18/01/12 10:34 PM.