Originally Posted By: LostShadow

Code:
  if (/* iswm $1) {
    if ($1 == /me) {
      /write something to file.txt | /halt
    }
  }


Found an alternate to fix that. Before, /me doesn't output to channel.
Code:
  if (/* iswm $1) {
    if ($1 == /me) {
      /write something to seen.txt | /describe $active $2- | /halt
    }
  }


Why /describe $active $2-?

If it was /describe $active $1-, and I typed /me test, I get.

* Neal /me test.

So with /describe $active $2-, /me test becomes.

* Neal test.