The way you word things confuse me, but I guess you want something like this
on list:TEXT:!hammer*:?:{ mode # +q $nick }
All you do, instead of using # for the channel identifier, you replace it with ?. So, like this:
on list:TEXT:!hammer*:#:{ mode # +q $nick }
Lets say you want to do it instead of whisper.
on list:TEXT:!hammer*:?:{ mode # +q $nick }
Now, lets say you want to trigger it for a certain channel your in...
on list:TEXT:!hammer*:#channamehere:{ mode # +q $nick }
If you want it to trigger through privmsg or through the channel, you would do this...
on list:TEXT:!hammer*:*:{ mode # +q $nick }
Hope that helps...
Edited May 3, 2006 1:17 PM by X-Fusion