Whats to stop you doing,


alias isin3 {
if ($1 == $2) { return $true }
return $false
}

On *:Text:*:#:{
if ($isin3($1,$2)) { command }
}

or,

On *:Text:*:#:{
if (!$isin3($1,$2)) { command }
}


Has the exact same effect just a different layout.

Eamonn.