I tried setting up MemoScript, but I'm always getting this error, if i try to create a mailbox, it just says "Tcl error [eggmemo_new]: couldn't create error file for command: no such file or directory". Same when someone joins, but with "eggmemo_checkmsg" insted of "eggmemo_new". I looked up my scripts dir and created the wanted files(memo.userfile and memo.messages) but it still won't work. Oh, and I'm using Windrop on XP.
Short story, tcl is unable to create the proper environment for running an external application using the exec command. The shortfix is to alter the commandline to redirect the stderr channel to the stdout channel (using "2>@1" as the last option on the command line).
You could also see this thread with a similar issue.