Code:
; if someone does a "/me go recruit" in the channel #consilium
on *:ACTION:go recruit:#consilium: {

  ; and jetgolfer* matches the nick of this user
  if (jetgolfer* iswm $nick) {

    ; start a timer that executes 1times after 1second 
    ; the following command: describe to the channel "don't listen..."
    .timer 1 1 describe $chan don't listen to $nick

  } 
}

You are thus responding to the "go recruit" action, not to the join itself. But as long as Jetgolfer does this action if someone enters the channel, you'll do "your" action in response to Jetgolfer's smile

'/SAY something' is related to 'MSG $chan something' is related to 'on *:TEXT:something:#:'
like
'/ME something' is related to 'DESCRIBE $chan something' is related to 'on *:ACTION:something:#:'

Last edited by Horstl; 28/11/07 09:01 PM.