Hello,

I am trying to do a code that would allow me to utilize the /me, /action and /describe commands on an Input statement. But so far it only works for the /me command heres what i have so far.

on *:INPUT:#: {
if ((/* !iswm $1) || (/me == $1)) {
var %p = $left($nick($chan,$me).pnick,1)
if (%p == $left($me,1)) unset %p
if (/me != $1) {
echo $color(own) -ti2 $chan %p $+ $me : $1-
.msg $chan $1-
}
else {
echo $color(action) -ti2 %p $+ $me $2-
.describe $chan $2-
}
haltdef
}
}

Could anyone help?

Thanks a bunch

- J