Page 1 of 1

BLocking /me actions

Posted: Wed Jul 16, 2008 3:52 pm
by Tibs
It's been ages since someone posted anything in here /ohmy.gif\' class=\'bbc_emoticon\' alt=\':o\' />

Well here goes:

I want to block the /me actions other people send ( because they are bugging me with mp3 messages ... )

So far I tried this

Code: Select all

on *:action:*:#18-25:{

  /haltdef 

}
but this doesn't seem to work

However, if I place an echo event inside those brackets, to check if the on action works, I get the echo ...

Anyone?

BLocking /me actions

Posted: Wed Jul 16, 2008 5:10 pm
by Jim

Code: Select all

on *:action:*:#18-25:{

  /haltdef

}
the only things I can think of is putting in "halt" above the "haltdef"...but it's been forever since I actually did anything in mIRC :\

something like this, maybe?

Code: Select all

on *:ACTION:*:#18-25:{
  halt
  haltdef
}
edit: last try, otherwise i don't know lol...might put double quotes around the channel name, not sure anymore o.o

Code: Select all

on *:ACTION:*:*:{
  if (#18-25 == $channel) { halt | haltdef }
}

BLocking /me actions

Posted: Wed Jul 16, 2008 6:33 pm
by Tibs
Ok, I found it.

It should be

Code: Select all

^1:action ....

BLocking /me actions

Posted: Wed Jul 16, 2008 7:02 pm
by Jim
ohhh, yea...i forgot about the caret (^) shows how long it's been x.x